Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #850757

    churchpath
    Participant

    Hi,
    I wish to change ‘Lost your Password’ text to ‘Forgot your Password’ in woocommerce.

    I’m struggling to do this as I’ve used Loco Translate plugin but the changes do not display.

    thanks,
    T.

    #850759

    Rue Nel
    Moderator

    Hello Terry,

    Thanks for writing in! To change ‘Lost your Password’ text to ‘Forgot your Password’ in woocommerce, since you already have your child theme active and ready, please insert this following code in your child theme’s functions.php file.

    add_filter('gettext', 'change_lost_password' );
    function change_lost_password($translated) { 
      $translated = str_ireplace('Lost your Password', 'Forgot your Password', $translated);
      return $translated; 
    }

    We would loved to know if this has work for you. Thank you.

    #850763

    churchpath
    Participant

    Fantastic 🙂

    Thank you!

    T.

    #850764

    Rue Nel
    Moderator

    You’re welcome!
    We’re glad we were able to help you out.