A custom user billing field
-
Hello!,
first of all, thank you for the great plugin.
I would have one question regarding the custom user billing field. I have one of them that had been created in the way as shown below. Currently, your plugin is bypassing it so I would like to ask you if there is any way to have the field included. Thank you in advance for letting me know.
add_filter(‘woocommerce_admin_billing_fields’, ‘order_admin_custom_fields’);
function order_admin_custom_fields($fields)
{
global $the_order;$fields[‘CUSTOM_ID’] = array(
‘label’ => __(‘Custom name’, ‘woocommerce’) ,
‘show’ => true,
);return $fields;
}
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘A custom user billing field’ is closed to new replies.