• I’d like to disable the new user and forgotten password notifications that are sent to our site admin. Is this achievable?

    Many thanks in advance

Viewing 1 replies (of 1 total)
  • Try this is your function.php of your theme.

    add_filter ( 'wppb_register_admin_message_content', 'wppb_delete_admin_email_message', 10, 5 );
    
    function wppb_delete_admin_email_message(){
        return '';
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Disabling new user and forgotten password emails’ is closed to new replies.