Skip to content

Instantly share code, notes, and snippets.

@simonlk
Created May 27, 2014 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save simonlk/d8a45a5fe5ff62d57ba4 to your computer and use it in GitHub Desktop.
Save simonlk/d8a45a5fe5ff62d57ba4 to your computer and use it in GitHub Desktop.
Change any text string in WordPress & WooCommerce
function wc_translate_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Related Products' :
$translated_text = __( 'Like this? Try these:', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'wc_translate_strings', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment