• Hello all,

    I wonder if any of you lovely people can help me.

    I keep getting admin email notifications every time one of our users changes their account password. Is there any way to disable this as admin gets about 20 of these a a day which is very annoying?

    Kind Regards

    • This topic was modified 3 years, 2 months ago by Jan Dembowski.
Viewing 1 replies (of 1 total)
  • You need to disable it using a send_password_change_email filter hook as below:

    add_filter( 'send_password_change_email', '__return_false' );

    You can add this at the end of functions.php file of your theme OR if you are using a plugin like Code Snippets then you can add this snippet from WordPress dashboard also.

Viewing 1 replies (of 1 total)
  • The topic ‘Turn off admin notification of user password change’ is closed to new replies.