make email field optional for checkout form
-
function custom_checkout_fields( $address_fields ) {
unset( $address_fields[‘billing’][‘billing_email’] );
return $address_fields;
}
add_filter( ‘woocommerce_checkout_fields’, ‘custom_checkout_fields’ ,20, 1 );I have written this function to make email filed option which work perfectly on desktop but for mobile its not working
The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘make email field optional for checkout form’ is closed to new replies.