Remove billing fields
-
Hi there,
With Woocommerce it is possible to remove billing fields with a filter hook like:
add_filter('woocommerce_billing_fields','custom_billing_fields'); function custom_billing_fields( $fields = array() ) { unset($fields['billing_postcode']); unset($fields['billing_country']); *** etc, etc *** return $fields; }Can the billing fields be removed from WP Express Checkout in a similar manner? I only want the first name and email address fields remaining.
Thanks for this amazing and simple plugin.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘Remove billing fields’ is closed to new replies.