Change the “Already have an account? Log in” text on the Checkout pagee
-
On my checkout page, I would like to change the text
Already have an account? Log in
Previously on another site I had used this code:add_filter( 'woocommerce_checkout_login_message', 'my_new_login_text' );
function my_new_login_text( $login_message ) {
$login_message = esc_html__( 'New customers click Login/Register on top to Register. Returning Customers ', 'woocommerce' );
return $login_message;
}But this changes nothing on my new site.
I’m using WordPress 6.6.2, Woocommerce 9.3.3 and Woocommerce Stripe Gateway 8.7.0
Any help appreciated. Thanks a lot.
- You must be logged in to reply to this topic.