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.