• Resolved mathisnarnar

    (@mathisnarnar)


    Hey
    firstly i would like to say thank you for this plugin and for your work.
    I’m french and i would like to change the automatic message after clicking on email confirmation link :
    “User successfully registered. Login to continue.”
    I don’t see option to do it so i ask for your help ^^.

    • This topic was modified 3 years, 3 months ago by mathisnarnar.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Amrit Kumar Shrestha

    (@shresthauzwal)

    Hi @mathisnarnar,

    Thank you for writing in,

    Please check this documentation link https://docs.wpeverest.com/user-registration/docs/customize-email-content/ and follow the instruction kindly to customize the email content according to your request.

    Regards!

    Thread Starter mathisnarnar

    (@mathisnarnar)

    my problem is not about email content.
    For my new user after clicking on the email confirmation link they are redirected on my website page and an automatic message is write on my website “User successfully registered.Login to continue.” i would like to change this sentences and not the email content…

    Plugin Support Amrit Kumar Shrestha

    (@shresthauzwal)

    Hi @mathisnarnar,

    Thanks for writing back,

    I hope you are having a lovely day. If you would like to change the message “User successfully registered. Login to continue.” then please add the following code on your theme’s functions.php file, or you can use the code snippet plugin.

    add_filter( 'login_message', function( $message ) {
    if( $message === "User successfully registered. Login to continue.") {
        $message = __("Your new message here ","user-registration");
    }
    return $message;
    });

    Regards!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom message after email confirmation’ is closed to new replies.