0

我很难找到任何基于 WooCommerce 订阅插件的文件来调整运输标签名称。

我想删除最后的单词:FREE

在此处输入图像描述

我曾尝试从另一个 Stack Overflow 用户那里使用此功能,但它似乎甚至没有在“购物车”中触发:

/**
 * Remove shipping name from the label in Cart and Checkout pages
 */
function sticky_wc_cart_totals_shipping_method_label( $method ) {
    $label = $method->get_label();

    if ( $method->cost > 0 ) {
        if ( WC()->cart->tax_display_cart == 'excl' ) {
            $label .= ': ' . wc_price( $method->cost );
            if ( $method->get_shipping_tax() > 0 && WC()->cart->prices_include_tax ) {
                $label .= ' <small class="tax_label">' . WC()->countries->ex_tax_or_vat() . '</small>';
            }
        } else {
            $label .= ': ' . wc_price( $method->cost + $method->get_shipping_tax() );
            if ( $method->get_shipping_tax() > 0 && ! WC()->cart->prices_include_tax ) {
                $label .= ' <small class="tax_label">' . WC()->countries->inc_tax_or_vat() . '</small>';
            }
        }
    }

    return apply_filters( 'woocommerce_cart_shipping_method_full_label', $label, $method );
}
add_filter( 'woocommerce_cart_shipping_method_full_label', 'sticky_wc_cart_totals_shipping_method_label', 10, 2 );

我不知道的是,这是否仅适用于 CART TOTALS,而不是经常性总运费。

对此有什么想法吗?

4

1 回答 1

0

我找到了解决方案。下载订阅插件后,我能够找到与之关联的代码。所以我创建了这个过滤器,似乎工作得很好。

/**
 * Remove shipping pricing from the label in Cart and Checkout pages
 */
add_filter( 'wcs_cart_totals_shipping_method', 'wcs_method_label', 10, 2 );
function wcs_method_label($method, $cart) {
    return $cart->label;
}
于 2017-02-06T18:14:07.880 回答