Home > Back-end >  woocommerce how to change <p> tag class on Register Page
woocommerce how to change <p> tag class on Register Page

Time:08-28

i want to change in my eshop the text of

class in Register Page.

Text : "A link to set a new password will be sent to your email address"

enter image description here

CodePudding user response:

try to look at woocomerce settings, or change it manualy at code, you can find code fragment by file search, in PhpStorm it`s like a ctrl shift f

CodePudding user response:

This is the text from form-login.php i need to change.

 *

        <?php else : ?>

            <p><?php esc_html_e( 'A link to set a new password will be sent to your email address.', 'woocommerce' ); ?></p>

        <?php endif; ?>

Any help how to do it on Function.php. i Should put some "add-filter" ?

  • Related