Today I’m sharing a quick fix for those that are having trouble with empty spaces in the checkout form of WooCommerce.
Add this code to your theme functions.php or if you don’t know how access the theme files, install the My Custom Functions plugin and add the code there.
/*********REMOVE EMAIL SPACES - webmediaproject.com**************/ 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; }