Invalid email address! If entered accidentally with spaces
-
Hi,
We have an issue with email field if entered accidentally with spaces
it return with error Invalid email address , that make the user confused
and don’t know what is the issue come from .
we used a function to Automatically remove spaces from email field but it’s not working . any help please ?add_filter( ‘woocommerce_checkout_fields’ , ‘remove_spaces_in_email’ );
function remove_spaces_in_email( $fields ) {
$fields[‘billing’][‘billing_email’]= str_replace(‘ ‘,”,$fields[‘billing’][‘billing_email’]);
return $fields;
}
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Invalid email address! If entered accidentally with spaces’ is closed to new replies.