• Resolved avaiya

    (@avaiya)


    Hey there. I’d like to edit the text on our Reset Your Password page. Currently it says: “Lost your password? Enter your email address and we will send you a link to reset it.” We use Thrivecart with LifterLMS and it is confusing people when they first create their account, so we’d like it to say something like: “Need to Set or Reset Your Password? Enter your email address and we will send you a link to set or reset it.” Where can I edit that text? Thanks!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support Nick Mariano

    (@reddotinmotion)

    Hi @avaiya

    It looks like we already responded to a duplicate of this support request. In summary, we provided you with the PHP code below to fix this problem:

    function my_custom_filter_for_lost_password( $message ) {
       return "Need to create your password for the 1st time? Or need to reset your password if you've lost it? Enter your email address and we will send you a link to create your password or reset it.";
    }
    
    add_filter( 'lifterlms_lost_password_message', 'my_custom_filter_for_lost_password', 10, 1);

    We asked you to edit your functions.php file to add this code. An alternative is to simply use the free and popular Code Snippets plugin to run that same PHP code.

Viewing 1 replies (of 1 total)
  • The topic ‘Edit Text on Reset Your Password Page’ is closed to new replies.