希望对于那些知道你的人来说简单。我创建了一个自定义字段,显示在WooCommerce Checkout结算信息中。
function reigel_woocommerce_checkout_fields( $checkout_fields = array() ) {
$checkout_fields['billing']['order_birth_date'] = array(
'type' => 'text',
'class' => array('my-field-class form-row-wide'),
'id' => 'datepicker',
'required' => false,
'name' => 'jqueryDate',
'maxlength' => '8',
'label' => __('Date of Birth'),
'placeholder' => __('MM/DD/YY'),
'options' => $mydateoptions,
'value' => 'test'
);
return $checkout_fields;
}
add_filter( 'woocommerce_checkout_fields', 'reigel_woocommerce_checkout_fields' );
一切都很可爱。
但是,似乎我不能将“值”传递给数组。它只是没有出现。我想为自定义字段设置默认值,但我无法弄清楚如何做到这一点。 :(
答案 0 :(得分:2)
您应该可以将'default' => 'Default Value'
添加到order_birth_date数组中。