If you need to customise lost password woocommerce text that usually says: –
Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.
then the following code will let you customise it.
1 2 3 4 5 6 |
add_filter('woocommerce_lost_password_message', 'change_lost_password_message'); function change_lost_password_message() { return 'We all make mistakes! Please enter your registered email address. You will receive a link to create a new password via email.'; } |