【问题标题】:Hide costs from available shipping methods options In WooCommerce在 WooCommerce 中隐藏可用运输方式选项的成本
【发布时间】:2020-11-19 14:16:11
【问题描述】:

是否可以在购物车页面上隐藏 WooCommerce 可用的运输选项费用? 我只想在结帐页面上显示费用。

在下面的屏幕截图中,费用用红色下划线标出:

谢谢

【问题讨论】:

    标签: php wordpress woocommerce cart shipping-method


    【解决方案1】:

    以下将仅从购物车中的运输选项中删除运输费用:

    add_filter( 'woocommerce_cart_shipping_method_full_label', 'filter_cart_shipping_method_full_label', 10, 2 );
    function filter_cart_shipping_method_full_label( $label, $method ) {
        // On cart remove costs 
        if( is_cart() ) {
           return $method->get_label();
        }
        return $label;
    }
    

    代码在您的活动子主题(或活动主题)的functions.php 文件中。经过测试并且可以工作。

    相关:Change wc_cart_totals_shipping_method_label function in Woocommerce

    【讨论】:

    • 嗨 Loic,我试过了,但没有成功。它表明该网站存在批评错误。 ://
    猜你喜欢
    • 1970-01-01
    • 2021-12-08
    • 2018-11-09
    • 1970-01-01
    • 2014-08-06
    • 2021-01-08
    • 2019-10-17
    • 2021-02-04
    相关资源
    最近更新 更多