Skip to content

Instantly share code, notes, and snippets.

@metelidrissi
Created December 16, 2020 09:17
Show Gist options
  • Save metelidrissi/28c664ea3b40a92ff163dad25960a8d4 to your computer and use it in GitHub Desktop.
Save metelidrissi/28c664ea3b40a92ff163dad25960a8d4 to your computer and use it in GitHub Desktop.
Rename the module name in WordPress
function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'WooCommerce' :
$translated_text = __( 'Stall', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment