How to disable wordpress confirmation email for new users

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: https://developer.wordpress.org/reference/functions/wpmu_signup_user_notification/

Create new user without password

Current versions of WP allow creation of a user without creating a password. Just leave password area blank, and verify no password if prompted. But, best practice might be to create user with a random password, but not tell the user the password. Have them do the ‘lost password’ thing to set up their own … Read more

Set “Display name publicly as” to be usernames by default

If you want this for all future users then hook into the user_register event and update it there. Pull the WP_User using get_userdata and wp_update_user info with the new display name. add_action( ‘user_register’, ‘wpse_20160110_user_register’, 10, 1 ); function wpse_20160110_user_register ( $user_id ) { // get the user data $user_info = get_userdata( $user_id ); // pick … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)