DigitalRefresh
9/13/2019 - 11:24 PM

Checkout: Edit Returning customer? Text #woo #rename

Edit "Returning customer? Click here to login" From WooCommerce Checkout Page
Source: http://wpdoityourself.com/wordpress-custom-functions-woocommerce-checkout-page/

// Edit "Returning customer? Click here to login" text from Checkout Page
add_filter( 'woocommerce_checkout_login_message', 'rename_returning_customer' );
 
function rename_returning_customer() {
\!h  return '__Have you shopped with us before?__';
}