自定义字段的日期外观错误



我刚刚尝试添加一个"交货日期";到WooCommerce基于这个和这个线程的结账过程。

这是在订单元上打印交货日期并在感谢页面和管理订单页面上查看的相关代码:

//Shipping (Delivery) Date

// Add custom checkout datepicker field
add_action( 'woocommerce_before_order_notes', 'checkout_display_datepicker_custom_field' );
function checkout_display_datepicker_custom_field( $checkout ) {
$field_id = 'my_datepicker';
echo '<div id="datepicker-wrapper">';
$today = strtotime('today');
$tomorrow = strtotime('tomorrow');
$dayAfterTomorrow = strtotime('+2 days');
woocommerce_form_field(  $field_id, array(
'type'          => 'select',
'class'         => array('my-field-class form-row-wide'),
'label' => __('Choose a date'),
'placeholder'   => __('Select delivery date'),
'required' => true, // Or false
'options'     => array(
'' => 'Select',
date( 'yyyy-mm-dd', $today ) => date( get_option('date_format'), $today ),
date( 'yyyy-mm-dd', $tomorrow ) => date( get_option('date_format'), $tomorrow ),
date( 'yyyy-mm-dd', $dayAfterTomorrow ) => date( get_option('date_format'), $dayAfterTomorrow ),
)));
echo '<br></div>';
}

// Save field
add_action( 'woocommerce_checkout_create_order', 'save_datepicker_custom_field_value', 10, 2 );
function save_datepicker_custom_field_value( $order, $data ){
$field_id = 'my_datepicker';
$meta_key = '_'.$field_id;
if ( isset($_POST[$field_id]) && ! empty($_POST[$field_id]) ) {
$date = esc_attr($_POST[$field_id]);

$order->update_meta_data( $meta_key, $date ); // Save date as order meta data

$note = sprintf(__("Chosen date for Thank you page: %s.", "woocommerce"), $date );
$note = isset($data['order_comments']) && ! empty($data['order_comments']) ? $data['order_comments'] . '. ' . $note : $note;

// Save date on customer order note
$order->set_customer_note( $note );
}
}

它打印选择的日期,但格式错误,如:202020-1212-2424

如何修改此错误?

您在date()函数上使用了错误的格式。查看日期/时间格式文档。

在您的情况下,yyyy-mm-dd:

  • y一年的两位数表示
  • m月份的数字表示,以零开头
  • d每月的哪一天,两位数字带前导零

因此,20202020-1212-2424

你可能是指2020-12-24,应该是Y-m-d:

  • Y一年的全数字表示,4位

相关内容

  • 没有找到相关文章

最新更新