我在函数中具有函数.php:
// Hook in
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
// Our hooked in function - $fields is passed via the filter!
function custom_override_checkout_fields( $fields ) {
$fields['billing']['billing_infos'] = array(
'type' => 'textarea',
'label' => __('Podaj NIP', 'woocommerce'),
'placeholder' => _x('Tutaj możesz wpisać NIP', 'placeholder', 'woocommerce'),
'required' => false,
'class' => array('form-row-wide'),
'clear' => true
);
return $fields;
}
此代码将自定义字段添加到计费窗体。它工作正常,因为我像普通用户一样下订单时会看到它。问题出在管理面板中此字段中的数据上。我看不出来。请对此提供任何帮助吗?
这个缺少的挂钩函数将在"账单详细信息"下方的"订单编辑"页面中显示自定义字段:
add_action( 'woocommerce_admin_order_data_after_billing_address', 'display_billing_infos_to_admin_order_meta', 20, 1 );
function display_billing_infos_to_admin_order_meta( $order ){
echo '<p><strong>'.__('Podaj NIP').':</strong> ' . get_post_meta( $order->get_id(), '_billing_infos', true ) . '</p>';
}
代码进入函数.php活动子主题(或活动主题(的文件。经过测试并工作。