How to change “Create an account” text in WooCommerce / WordPress
If you want to change the text that appears on things like the WooCommerce “create an account”. You can use the same code and replace the variable “woocommerce” for other items. Try the simple code below and it may work for you.
Add the function below to your child theme functions.php file.
[php]
// change text from Create an account?
function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case ‘Create an account?’ :
$translated_text = __( ‘Create an account to receive reward points and other customer benefits’, ‘woocommerce’ );
break;
}
return $translated_text;
}
add_filter( ‘gettext’, ‘my_text_strings’, 20, 3 );
[/php]
Need help with this?
Hire me for a consultation and I'll walk you thru the process.
0 Comments