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!
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…
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!