- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在选择送货方式后,我需要选择产品的送货时间和日期,并将这些字段放入 woocommerce_after_shipping_rate
中。
据我所知。客户选择送货方式,例如“ express ”。
之后,会出现两个复选框:
尽快
交货日期。
如果客户选择“交货日期”,则会出现一个新字段,其中包含交货日期和时间。就是这样here
根据"Enable Datepicker in a WooCommerce Checkout custom text field "答案代码,我为交货日期和时间“尽快”和“交货日期”创建了附加字段。我从here下载了DateTimePicker .
这是我的代码:
// Register main datetimepicker jQuery plugin script
add_action( 'wp_enqueue_scripts', 'enabling_date_time_picker' );
function enabling_date_time_picker() {
// Only on front-end and checkout page
if( is_admin() || ! is_checkout() ) return;
// Load the datetimepicker jQuery-ui plugin script
wp_enqueue_style( 'datetimepicker', get_stylesheet_directory_uri() . '/assets/css/jquery.datetimepicker.min.css', array());
wp_enqueue_script('datetimepicker', get_stylesheet_directory_uri() . '/js/jquery.datetimepicker.full.min.js', array());
}
// Call datetimepicker functionality in your custom text field
add_action('woocommerce_before_order_notes', 'my_custom_checkout_field', 10, 1);
function my_custom_checkout_field( $checkout ) {
date_default_timezone_set('Europe');
$mydateoptions = array('' => __('', 'woocommerce' ));
echo '<div id="my_custom_checkout_field">
<h3>'.__('Delivery Info').'</h3>';
echo '
<script>
jQuery(function($){
$("#datetimepicker").datetimepicker({format:\'d.m.Y H:i\', allowTimes:[
\'11:00\', \'11:30\', \'12:00\', \'12:30\', \'13:00\', \'13:30\', \'14:00\', \'14:30\',
\'15:00\', \'15:30\', \'16:00\', \'16:30\', \'17:00\', \'17:30\', \'18:00\', \'18:30\',
\'19:00\', \'19:30\', \'20:00\', \'20:30\', \'21:00\', \'21:30\', \'22:00\', \'22:30\']
});
});
</script>';
// Checkbox ASAP
woocommerce_form_field( 'order_delivery_asap', array(
'type' => 'checkbox',
'class' => array('my-field-class form-row-wide'),
'label' => __('As Soon As Possible'),
'checked' => '',
'default' => 0,
), $checkout->get_value( 'order_delivery_asap' ));
// Checkbox Delivery Date
woocommerce_form_field( 'order_delivery_date', array(
'type' => 'checkbox',
'class' => array('my-field-class form-row-wide'),
'label' => __('Delivery Date'),
'checked' => '',
'default' => 0,
), $checkout->get_value( 'order_delivery_date' ));
// DateTimePicker
woocommerce_form_field( 'order_pickup_date', array(
'type' => 'text',
'class' => array('my-field-class form-row-wide'),
'id' => 'datetimepicker',
'required' => false,
'label' => __('Select date'),
'placeholder' => __(''),
'options' => $mydateoptions
),$checkout->get_value( 'order_pickup_date' ));
echo '</div>';
}
据我了解,我需要在此处包含条件逻辑,以便在选择“交付日期”复选框时,会出现一个带有 DateTimePicker 的字段。以便保存 ASAP 复选框和 DateTimePicker 的选定值。
不幸的是,我不知道如何正确地完成这一切。我将很高兴得到您的帮助!
最佳答案
添加更新 - 以下代码将:
我重新访问了您的代码,更改了字段段并添加了一些其他内容。
1) 带复选框
// Register main datetimepicker jQuery plugin script
add_action( 'wp_enqueue_scripts', 'enabling_date_time_picker' );
function enabling_date_time_picker() {
// Only on front-end and checkout page
if( is_checkout() && ! is_wc_endpoint_url() ) :
// Load the datetimepicker jQuery-ui plugin script
wp_enqueue_style( 'datetimepicker', get_stylesheet_directory_uri() . '/assets/css/jquery.datetimepicker.min.css', array());
wp_enqueue_script('datetimepicker', get_stylesheet_directory_uri() . '/js/jquery.datetimepicker.full.min.js', array('jquery'), '1.0', false );
endif;
}
// Display custom checkout fields (+ datetime picker)
add_action('woocommerce_before_order_notes', 'display_custom_checkout_fields', 10, 1 );
function display_custom_checkout_fields( $checkout ) {
// Define the time zone
date_default_timezone_set('Europe/Paris'); // <== Set the time zone (http://php.net/manual/en/timezones.php)
echo '<div id="my_custom_checkout_field">
<h3>'.__('Delivery Info').'</h3>';
// Hide datetimepicker container field
echo'<style> #datetimepicker_field.off { display:none; } </style>';
// Checkbox ASAP
woocommerce_form_field( 'delivery_asap', array(
'type' => 'checkbox',
'class' => array('my-field-class form-row-wide'),
'label' => __("As Soon As Possible", "woocommerce"),
'checked' => '',
'default' => 0,
), '');
// Checkbox Delivery Date
woocommerce_form_field( 'delivery_option', array(
'type' => 'checkbox',
'class' => array('my-field-class form-row-wide'),
'label' => __("Choose a delivery Date", "woocommerce"),
'checked' => '',
'default' => 0,
), '');
// DateTimePicker
woocommerce_form_field( 'delivery_date', array(
'type' => 'text',
'class' => array('my-field-class form-row-wide off'),
'id' => 'datetimepicker',
'required' => false,
'label' => __('Select date'),
'placeholder' => __(''),
'options' => array('' => __('', 'woocommerce' ))
),'');
echo '</div>';
}
// The jQuery script
add_action( 'wp_footer', 'checkout_delivery_jquery_script');
function checkout_delivery_jquery_script() {
// Only on front-end and checkout page
if( is_checkout() && ! is_wc_endpoint_url() ) :
?>
<script>
jQuery(function($){
var a = 'input[name="delivery_asap"]',
c = 'input[name="delivery_option"]',
d = '#datetimepicker',
f = d+'_field';
$(f).hide();
$(a).prop('checked', true);
// First checkbox
$(a).change(function(){
if( $(this).prop('checked') == true ){
$(f).hide();
$(c).prop('checked', false);
} else {
$(f).show();
$(c).prop('checked', true);
}
});
// Second checkbox
$(c).change(function(){
if( $(this).prop('checked') == true ){
$(f).show();
$(a).prop('checked', false);
} else {
$(f).hide();
$(a).prop('checked', true);
}
});
$(d).datetimepicker({
format: 'd.m.Y H:i',
allowTimes:[ '11:00', '11:30', '12:00', '12:30', '13:00', '13:30', '14:00', '14:30',
'15:00', '15:30', '16:00', '16:30', '17:00', '17:30', '18:00', '18:30',
'19:00', '19:30', '20:00', '20:30', '21:00', '21:30', '22:00', '22:30']
});
});
</script>
<?php
endif;
}
// Check that the delivery date is not empty when it's selected
add_action( 'woocommerce_checkout_process', 'check_datetimepicker_field' );
function check_datetimepicker_field() {
if ( isset($_POST['delivery_option']) && empty($_POST['delivery_date']) ) {
wc_add_notice( __( 'Error: You must choose a delivery date and time', 'woocommerce' ), 'error' );
}
}
// Check that the delivery date is not empty when it's selected
add_action( 'woocommerce_checkout_create_order', 'save_order_delivery_data', 10, 2 );
function save_order_delivery_data( $order, $data ) {
if ( isset($_POST['delivery_option']) && $_POST['delivery_option'] && ! empty($_POST['delivery_date']) ) {
$order->update_meta_data( '_delivery_datetime', sanitize_text_field( $_POST['delivery_date'] ) );
$order->update_meta_data( '_delivery_option', 'date' );
} elseif( isset($_POST['delivery_asap']) && $_POST['delivery_asap'] ) {
$order->update_meta_data( '_delivery_option', 'azap' );
}
}
代码位于事件子主题(或事件主题)的 function.php
文件中。经过测试并有效。
2) 使用单选按钮添加
用单选按钮替换复选框可能会更好:
// Register main datetimepicker jQuery plugin script
add_action( 'wp_enqueue_scripts', 'enabling_date_time_picker' );
function enabling_date_time_picker() {
// Only on front-end and checkout page
if( is_checkout() && ! is_wc_endpoint_url() ) :
// Load the datetimepicker jQuery-ui plugin script
wp_enqueue_style( 'datetimepicker', get_stylesheet_directory_uri() . '/assets/css/jquery.datetimepicker.min.css', array());
wp_enqueue_script('datetimepicker', get_stylesheet_directory_uri() . '/js/jquery.datetimepicker.full.min.js', array('jquery'), '1.0', false );
endif;
}
// Display custom checkout fields (+ datetime picker)
add_action('woocommerce_before_order_notes', 'display_custom_checkout_fields', 10, 1 );
function display_custom_checkout_fields( $checkout ) {
// Define the time zone
date_default_timezone_set('Europe/Paris'); // <== Set the time zone (http://php.net/manual/en/timezones.php)
echo '<div id="my_custom_checkout_field">
<h3>'.__('Delivery Info').'</h3>';
// Hide datetimepicker container field
echo'<style> #datetimepicker_field.off { display:none; } </style>';
// Radio buttons field: Selected option
woocommerce_form_field( 'delivery_option', array(
'type' => 'radio',
'class' => array('my-field-class form-row-wide'),
'options' => array(
'asap' => __('As Soon As Possible'),
'date' => __('Select Delivery Date'),
),
), 'asap' );
// DateTimePicker
woocommerce_form_field( 'delivery_date', array(
'type' => 'text',
'class' => array('my-field-class form-row-wide off'),
'id' => 'datetimepicker',
'required' => false,
'label' => __('Select date'),
'placeholder' => __(''),
'options' => array('' => __('', 'woocommerce' ))
),'');
echo '</div>';
}
// The jQuery script
add_action( 'wp_footer', 'checkout_delivery_jquery_script');
function checkout_delivery_jquery_script() {
// Only on front-end and checkout page
if( is_checkout() && ! is_wc_endpoint_url() ) :
?>
<script>
jQuery(function($){
var d = '#datetimepicker',
f = d+'_field',
r = 'input[name="delivery_option"]';
$(f).hide();
// On radio button change
$(r).change(function(){
if( $(this).val() == 'date' ){
$(f).show();
} else {
$(f).hide();
}
});
// Enable the datetime picker field
$(d).datetimepicker({
format: 'd.m.Y H:i',
allowTimes:[ '11:00', '11:30', '12:00', '12:30', '13:00', '13:30', '14:00', '14:30',
'15:00', '15:30', '16:00', '16:30', '17:00', '17:30', '18:00', '18:30',
'19:00', '19:30', '20:00', '20:30', '21:00', '21:30', '22:00', '22:30']
});
});
</script>
<?php
endif;
}
// Check that the delivery date is not empty when it's selected
add_action( 'woocommerce_checkout_process', 'check_datetimepicker_field' );
function check_datetimepicker_field() {
if ( isset($_POST['delivery_option']) && $_POST['delivery_option'] === 'date'
&& isset($_POST['delivery_date']) && empty($_POST['delivery_date']) ) {
wc_add_notice( __( 'Error: You must choose a delivery date and time', 'woocommerce' ), 'error' );
}
}
// Check that the delivery date is not empty when it's selected
add_action( 'woocommerce_checkout_create_order', 'save_order_delivery_data', 10, 2 );
function save_order_delivery_data( $order, $data ) {
if ( isset($_POST['delivery_option']) && $_POST['delivery_option'] == 'date' && ! empty($_POST['delivery_date']) ) {
$order->update_meta_data( '_delivery_datetime', sanitize_text_field( $_POST['delivery_date'] ) );
}
if( isset($_POST['delivery_option']) ) {
$order->update_meta_data( '_delivery_option', esc_attr( $_POST['delivery_option'] ) );
}
}
代码位于事件子主题(或事件主题)的 function.php
文件中。经过测试并有效。
要获取交付自定义字段值,您将使用:
1) 来自 $order
、WC_Order
对象(使用 WC_Data
get_meta()
方法):
$delivery_option = $order->get_meta('_delivery_option');
if( $delivery_option == 'date' ) {
$delivery_datetime = $order->get_meta('_delivery_datetime');
}
2) 来自 $order_id
,订单 ID(使用 WordPress get_post_meta()
函数)
$delivery_option = get_post_meta($order_id, '_delivery_option', true);
if( $delivery_option == 'date' ) {
$delivery_datetime = get_post_meta($order_id, '_delivery_datetime', true);
}
<小时/>The following: Display custom fields values in WooCommerce order and email notification
相关主题: Enable Datepicker in a WooCommerce Checkout custom text field
关于php - 选择 WooCommerce 交付方式后选择日期和时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54886638/
[编辑:在 functions.php 中添加代码并省略代码 WC 文件中的更改时,它实际上起作用了。重要提示:它仅在 ONE 属性存在时有效。但是,当有 2 个属性(例如尺寸和颜色)时,它就不起作用
我使用以下方法获取购物车中产品的版本ID。 $cartdetails = $woocommerce->cart->get_cart(); foreach($cartdetails as $ca
我目前使用 $order = new WC_Order($order_id); $order->update_status('completed', 'Order has been delivered
您好,我无法从 woocommerce 订单送货地址获取,我收到错误: fatal error :在 .. 中的非对象上调用成员函数 get_formatted_address() 我正在使用代码:
我不是在谈论向产品添加属性,而是我想添加属性本身.. 您可以从“产品”->“属性”下的 UI 执行此操作,但从代码中它是如何完成的(例如:要调用哪些函数或要更新的表)? 最佳答案 属性只是一个自定义分
是否可以使产品变化来改变价格? 例如,我有一个基本产品及其变体: 数量 -10 -20 -50 颜色 - 蓝色 -红色 项目 -是的 -没有 我有数量的价格,不管是什么颜色。但是,如果您选择“项目-否
有没有办法将其他收件人添加到 woocommerce 发票邮件中。我尝试使用“woocommerce_email_headers” Hook ,但它不起作用: add_filter( 'woocomm
我不是在谈论向产品添加属性,而是我想添加属性本身.. 您可以从“产品”->“属性”下的 UI 执行此操作,但从代码中它是如何完成的(例如:要调用哪些函数或要更新的表)? 最佳答案 属性只是一个自定义分
只是想看看是否有办法为我的送货选项添加工具提示或弹出窗口,以便在客户悬停或点击(通过移动设备)时更详细地向客户解释此选项的含义? 最佳答案 简单的解决方案是通过将以下内容添加到您的 functions
如何获取 woocommerce 中的类别列表?使用这段代码,我得到了 wordpress 类别列表: function gaga_lite_category_lists(){ $catego
我一直试图在 WooCommerce 上禁用产品价格四舍五入,但没有成功。即使我在 WooCommerce > Settings > General > Number of decimals 上将 d
我一直在尝试定制 woocommerce 中的相关产品。我使用 woocommerce_output_related_products_args 添加 meta_query 选项,但它们没有效果,这是
由于 WooCommerce 2.1 页面(例如订单接收)已被删除并替换为 WC 端点。我的结帐页面有一个自定义页面模板 (page-checkout.php),现在所有结帐端点也都在使用这个自定义页
我正在向 WooCommerce 的结帐页面添加额外的字段, 我已经添加了基本的文本字段,但我想要一个带有几个选项的下拉列表或选择框, 这是我到目前为止所做的,但我在某处犯了错误 $fields['b
我试图在我的 invoice.php 中拼出 WooCommerce 订单总额模板文件可以达到订单总金额。 首先我试过: $total = $order->get_total(); - format
我需要在购物车页面和结帐页面中显示的价格(小计、总计...)后添加文字提及。 我知道如何在单个页面和商店页面上执行此操作,但不知道如何在其他页面上执行此操作。我唯一找到的就是这段代码,但它不起作用。
在 Woocommerce 中,在管理产品列表中,我应该需要为特定属性过滤产品。 根据“Add a filter dropdown for product tags in woocommerce ad
Woocommerce 有一个带有“woocommerce”类的 div 我想添加另一个类或删除该类。那是哪个文件? 最佳答案 虽然 WooCommerce 没有提供任何支持的方法来实现这一点
您好,目前我想获取 woocommerce 中的税率名称。我有什么办法可以得到这张图中圈出的值:/image/pyGAH.png 我当前的代码: $items = $order->get_items(
在 Woocommerce 中,我尝试显示可变产品的销售日期。 我找到了a code ,如果我将此代码准确地发布在functions.php中,它不会执行任何操作。我尝试修改它,因为我只需要在起始页上
我是一名优秀的程序员,十分优秀!