【发布时间】:2021-11-29 03:25:00
【问题描述】:
如何将 woocommerce 结帐的“运送到不同地址”部分标题更改为“部分付款”?
【问题讨论】:
标签: php wordpress woocommerce
如何将 woocommerce 结帐的“运送到不同地址”部分标题更改为“部分付款”?
【问题讨论】:
标签: php wordpress woocommerce
将此添加到您的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);
【讨论】:
此外,它可以通过更新 woocommerce 插件使用 Loco Translate 插件来完成
【讨论】: