• Resolved webbuilderwp1234

    (@webbuilderwp1234)


    I have some issue with the registration flow:

    This is how it works now:
    User registers > Get woocommerce success message on the page “Your account was created successfully and a password has been sent to your email address.”

    Admin must first accept it > and then click on “Send password reset” > then user will receive an email to reset his password where he can set his password and after that user can login in with his details

    How can I change that message (“Your account was created successfully and a password has been sent to your email address.” )? Because that’s not correct.

    And how can I fix that there will be send an email automaticly once Admin approves user where user can setup their password.

    I want this:
    User registers > Gets woocommerce success message on the page “Once your approved you’ll receive an email to setup your password (or something like that)”

    Admin must first accept it > then user will receive an email automaticly that he got accepted and that he can setup his password.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @webbuilderwp1234,

    Thanks for using NUA. Please follow up,

    The option to modifying the messages and email notifications is available in the premium version of the plugin.

    When the user registers on the site and the admin approves the user receives the approval email.
    You can customize the approval email and add a reset password link in the email.

    In this way, the admin will receive the approval email with the reset password link.

    Thanks

    Hi @webbuilderwp1234,

    Due to a lack of activity, we are going to mark this thread as resolved. If you have any other issues, please feel free to open a new thread.

    Have a great day!

    Thanks

    Add this to your functions.php file:

    
    add_filter( 'woocommerce_add_message', function( $message ) {
        if( $message == 'The original translated message' ) {
    		$message = 'Your alternative message';	
    	}
        return $message;
    });
    
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘No password email & wrong message’ is closed to new replies.