Is it possible to make WordPress user name the Email Address?
So unername could be hidden or not required and is replaced with email address.
I know there are plugins that can allow users to use their email as the log in, but they still have to enter the username when they register. I want to try and do away with the username.
I know this thread is over a year old now, but I just tested creating an account where the username is an email address and it works. In theory, you could create a front-end signup form that saves the email variable to both the username and email fields in the database.
WordPress allows usernames with some special characters, so this is a completely valid way to sign people up: http://codex.wordpress.org/Function_Reference/sanitize_user
Yes it is possible. Even you can configure WordPress to Login, Register and Retrieve Password using Email only.
You can put the code below in your theme’s functions.php file.
Step-1: Remove Username textfield
Step-2: Remove Username error
Step-3: Manipulate Background Registration Functionality.
There is also a plugin to achieve this functionality.
Plugin: https://wordpress.org/plugins/smart-wp-login/
The username is a core entity in the WordPress DB and philosophy and it can’t be bypassed like that. Now if you want to let users login with their emails, use this plugin: http://wordpress.org/extend/plugins/wp-email-login/ It allows you to login with either email/pass or username/pass. Found it like a month ago, works like a charm.
Even plugins that use alternative means for registration and login (facebook, twitter and Google) create a username (for instance, one plugins I’ve tried creates usernames like fbX where X is the facebook ID. Unfortunately it is not something we can work around.
Hope this helps! 🙂