在WooCommerce结帐页面的“您的订单”下重命名“输入您的地址以查看送货选项”

时间:2019-04-25 04:55:21

标签: woocommerce checkout

我想重命名“输入您的地址以查看运送选​​项”的文本。在“您的订单”部分底部的WooCommerce结帐页面中。

这是屏幕截图:

2 个答案:

答案 0 :(得分:0)

您可以编辑文件模板/cart/cart-shipping.php 搜索文本“输入您的地址以查看运送选​​项。”

答案 1 :(得分:0)

使用过滤器而不是修改模板文件可能是一个更好的解决方法。将此块添加到活动主题文件夹中的function.php文件的最后:

add_filter('gettext', 'Behrooz_woo_translations', 20, 3);
add_filter('ngettext', 'Behrooz_woo_translations', 20, 3);
function Behrooz_woo_translations( $translation, $text, $domain ) {
        
    // Put your custom text here in a key => value pair
    $custom_text = array(
        'Enter your address to view shipping options.' => 'This is the text that you want to replace with the original Text.',
    );

    if( array_key_exists( $translation, $custom_text ) ) {
        $translation = $custom_text[$translation];
    }
    return $translation;
}