mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
8 lines
395 B
Text
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;
|
|
}
|