Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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 );
Source by wordpress.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #woocommerce #create #client #account #email
ADD COMMENT
Topic
Name
8+6 =