• Resolved renisauria

    (@renisauria)


    Is it possible to change this text when the request is submitted?

    “Check your inbox for instructions how to set new password.”

    Thanks!

    • This topic was modified 4 years, 10 months ago by renisauria.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Zorem

    (@zorem)

    Hi @renisauria,

    I added a filter hook for the change reset password message. So, if you want to change the message. please update plugin and you need to add below code in function.php file.

    /*
    * Change the message of the reset password message.
    */
    add_filter( 'ajaxlogin_lost_password_message', 'cbr_add_custom_message_func', 10, 1 );
    function cbr_add_custom_message_func( $message ){
    	return "Write your custom meessage here";
    }

    if you like the plugin, please add a review ??

    Thanks ??

    Thread Starter renisauria

    (@renisauria)

    Wonderful! I really appreciate it. Many thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing text when request is submitted’ is closed to new replies.