Checkout – How to mark all fields as not required?
-
Hi.
I’m trying to make my site able to make script tests for Visa (the credit card company).
They ask for a day without any required fields for testing their script.
I already have the phone not required tag:
add_filter( 'woocommerce_billing_fields', 'wc_npr_filter_phone', 10, 1 ); function wc_npr_filter_phone( $address_fields ) { $address_fields['billing_phone']['required'] = false; return $address_fields; }
And I’m trying to replicate this model to other fields (First and Last Names, ZIP Code, e-mail, etc…)
Can anyone help me, plase?
If you wanna see my website, it is https://www.slackcuritiba.com.br/finalizar-compra
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Checkout – How to mark all fields as not required?’ is closed to new replies.