How to disable password changed mail?

Home Forums Legacy Support Support queries How-to & Troubleshooting How to disable password changed mail?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #129971
    Henry
    Spectator
    Hello How can I disable the "password changed mail" we get every time a user change their password? We do not need this information. Thanks in advance and best regards!
    #130023
    H.K. Latiyan
    Participant
    Hi, This is a wordpress feature and not of wplms. ----------- Try adding the bellow code in your wplms-customizer.php file present in your wplms customizer plugin: add_action('init',function(){ remove_action( 'after_password_reset', 'action_after_password_reset', 10, 1 ); });
    #145490
    hilmanf
    Spectator
    I have same problem, it's annoying. The code above is not working. Email notification to admin still there. Please refer: http://prntscr.com/i9mph7 Need help.
    #145588
    H.K. Latiyan
    Participant
    Hi, please remove the previous code and then add the below code: add_action('init',function(){   remove_action( 'after_password_reset', 'wp_password_change_notification' ); });
Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How to disable password changed mail?’ is closed to new replies.