Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deckerweb/d2e776fa9ddbe5d39dbd10292877a209 to your computer and use it in GitHub Desktop.
Save deckerweb/d2e776fa9ddbe5d39dbd10292877a209 to your computer and use it in GitHub Desktop.
Use the submitted email address for the username in WooCommerce registration.
<?php
add_filter( 'woocommerce_new_customer_data', function( $data ) {
$data['user_login'] = $data['user_email'];
return $data;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment