Answers for "woocommerce create client account without email"

0

woocommerce create client account without email

function custom_override_checkout_fields( $fields ) {
    unset($fields['billing']['billing_email']);    
    return $fields;
}
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields', 1000, 1 );
Posted by: Guest on April-28-2021

Code answers related to "woocommerce create client account without email"

Browse Popular Code Answers by Language