mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
12 lines
347 B
Text
12 lines
347 B
Text
add_filter( 'gettext', 'wc_translate_shippingto', 9999, 3 );
|
|
|
|
function wc_translate_shippingto( $translated, $untranslated, $domain ) {
|
|
if ( ! is_admin() && 'woocommerce' === $domain ) {
|
|
switch ( $translated ) {
|
|
case 'Shipping to %s.':
|
|
$translated = '';
|
|
break;
|
|
}
|
|
}
|
|
return $translated;
|
|
}
|