D
D
Denis Gurov2019-08-29 12:57:35
WooCommerce
Denis Gurov, 2019-08-29 12:57:35

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 ;
}

But, when I click on the "Confirm Order" button, other fields in the "Delivery Address" are not displayed.
5d67a154588c4922595514.png
Moreover, if I make another field, say "Country" optional, then everything displays correctly without the Country.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question