Viewing 1 replies (of 1 total)
  • Hi,

    Yes that’s possible using a bit of coding:

    Create an empty plugin like this: https://gist.github.com/sareiodata/76f701e01db6685829db
    Add the following code to the end of it:

    // This filter will change the content of the Default Registration Email template.
    
    add_filter ( 'wppb_register_user_email_message_without_admin_approval', 'wppbc_custom_default_content_sent_to_user', 20, 5 );
    function wppbc_custom_default_content_sent_to_user($user_message_content, $email, $password, $user_message_subject, $context)
    {
        $new_message = "";
        return $new_message;
    }

    Install this plugin via FTP (copy it inside wp-content/plugins) or create a zip archive with it and install it via the WordPress plugin upload functionality
    If you need help with any of this, please let me know!

    Best regards,

Viewing 1 replies (of 1 total)
  • The topic ‘Your new account information’ is closed to new replies.