Code-Snippets-Functions/Execute a function on a child site/WooCommerce/hide-thanks-for-shopping-with-us-in-emails.txt

8 lines
395 B
Text

add_filter( 'gettext', 'wc_translate_woocommerce_strings_emails', 999 );
function wc_translate_woocommerce_strings_emails( $translated ) {
// Get strings and translate them into empty string >>> ''
$translated = str_ireplace( 'Thanks for shopping with us.', '', $translated );
$translated = str_ireplace( 'We hope to see you again soon.', '', $translated );
return $translated;
}