Answer the question
In order to leave comments, you need to log in
How can I make the address field optional?
Guys, tell me what could be the jamb. I make the address field, on the checkout page, optional
add_filter( 'woocommerce_default_address_fields' , 'optional_default_address_fields', 10, 1 );
function optional_default_address_fields( $address_fields ) {
unset($address_fields['address_1']['required']);
return $address_fields ;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question