【问题标题】:Change 'Ship to a Different Address' title Woocommerce更改“运送到其他地址”标题 Woocommerce
【发布时间】:2021-11-29 03:25:00
【问题描述】:

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

【问题讨论】:

标签: php wordpress woocommerce


【解决方案1】:

将此添加到您的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);

【讨论】:

    【解决方案2】:

    此外,它可以通过更新 woocommerce 插件使用 Loco Translate 插件来完成

    【讨论】:

    • 正如目前所写,您的答案尚不清楚。请edit 添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。你可以找到更多关于如何写好答案的信息in the help center
    猜你喜欢
    • 2019-01-17
    • 2019-05-13
    • 1970-01-01
    • 2020-01-22
    • 2020-08-15
    • 2014-04-12
    • 2020-04-13
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多