I need to disable WordPress new user registration email confirmation link and auto generated password for new users.
Users should be register with a password of their choice without email confirmation link
I need to disable WordPress new user registration email confirmation link and auto generated password for new users.
Users should be register with a password of their choice without email confirmation link
I noticed the current answers are plugin based only.
You can use wpmu_signup_user_notification
to achieve this without installing a plugin.
Add to your functions.php
– this will disable user signup notifcations completely.
add_filter( 'wpmu_signup_user_notification', '__return_false' );
You can read more wpmu_signup_user_notification
here: