Hi,
Please add option to disable "Password Lost/Changed" emails. When user changed her lost password, suped admin get these emails.
Thanks,
Feriman
Hi,
Please add option to disable "Password Lost/Changed" emails. When user changed her lost password, suped admin get these emails.
Thanks,
Feriman
Or better yet, allow the admin to set up who will receive registration-related notifications. The person handling development (and overall site health) is not necessarily the same person who manages membership.
*Voted* Nice idea and yes, a setup for the admin would be great.
Another vote for this! I'd be great if we could change/disable/customize the option to send new users the password reset email. I don't want all my site users to have the password to access the site!
VOTE! That would be great! especially with a setup for the admin
Ridiculous, there's no core option to stop this. Same with the new user registered email
http://i.imgur.com/S6HOART.jpg
The OP was talking about Multisite, which doesn't allow you to stop getting those emails. In an open-registration multisite, this is for your protection as all the members of your site (and thus all blogs on your network) are your responsibility.
https://wordpress.org/plugins/disable-new-user-notifications/
It can be done, but it's something MOST sites should really leave alone since they should know when people register.
I share the same request.
This email notification is just very annoying and unnecessary.
Alternatively, is it maybe possible to integrate this feature into a plugin?
Thankfully,
~Robert
Add the following to the functions.php of your active child theme. This effectively “blanks out” the same function in pluggable.php.
// Fix New User Email Send
if ( !function_exists('wp_new_user_notification') ) :
function wp_new_user_notification( $user_id, $notify = '' ) { }
endif;
And https://wordpress.org/plugins/welcome-email-editor/
And more. Theere are many plugins, just search for the one that fits your needs.
You must log in to post.