更改“运送到其他地址”标题Woocommerce

时间:2018-11-28 07:51:09

标签: php wordpress woocommerce

如何将woocommerce结帐“运送到其他地址”部分的标题更改为“部分付款”?

1 个答案:

答案 0 :(得分:0)

将此添加到您的functions.php

function shipchange( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Ship to a different address?' :
$translated_text = __( 'Partial Pay', 'woocommerce' );
break;
}
return $translated_text;
}

add_filter('gettext', 'shipchange', 20, 3);