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.
// 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 );