Users – remove ‘send password’ checkbox
Here are few ideas how to deal with the neutralization of the Send Password part on the /wp-admin/user-new.php page: Idea 1: We can overwrite the wp_new_user_notification() function, because it’s pluggable: Try for example: if ( ! function_exists( ‘wp_new_user_notification’ ) ): function wp_new_user_notification($user_id, $plaintext_pass=””) { $user = get_userdata( $user_id ); // The blogname option is escaped … Read more