在WooCommerce 2.6和3+中删除特定类别的运费统一费率方法

时间:2016-08-12 13:27:53

标签: php wordpress woocommerce checkout shipping

我在woocommerce运输选项中需要帮助,我想隐藏特定产品类别的统一费率,我只想显示本地送货或本地提货选项。

对于所有其他类别,所有选项都应该有效。

我已尝试使用该代码(在我的主题的function.php文件中添加):

function cart_has_product_with_orange_cats() {

    global $woocommerce;
    $product_in_cart = false;

    // start of the loop that fetches the cart items
    foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) {
        $_product = $values['data'];
        $terms = get_the_terms( $_product->id, 'product_cat' );
        // second level loop search, in case some items have several categories

        if($terms){

            foreach ($terms as $term) {
                $_categoryid = $term->term_id;

                if ( $_categoryid == 16 ) {
                    //category is in cart!
                    $product_in_cart = true;
                }
            }   
        }
    }
    return $product_in_cart;
}

// add filter and function to hide method

add_filter( 'woocommerce_available_shipping_methods', 'custom_shipping_methods' , 10, 1 );

function custom_shipping_methods( $available_methods ){

    if ( cart_has_product_with_orange_cats() ) {

        foreach($available_methods as $key => $method){
            if( $key == 'local_delivery' || $key == 'local_pickup'){
                continue;
            }
            unset($available_methods[$key]);

        }
        // remove the rate you want
    }
    // return the available methods without the one you unset.
    return $available_methods;
}

但它并不适合我,也许是因为最新的WooCommerce版本或任何其他问题的过时代码。

我怎样才能做到这一点?

感谢。

1 个答案:

答案 0 :(得分:4)

更新 (与WC 3+兼容,也适用于可变产品)

  

此答案的经过全功能测试的更正后的代码位于另一个主题上:
  的 Shipping methods - Local Pickup option not available when Flat Rate is hidden

  

重要提示
woocommerce_available_shipping_methods挂钩 已弃用,因为WC版本为2.1+,您需要使用 woocommerce_package_rates 过滤器。

WooCommerce版本2.6 + 介绍新送货区。因此,与运费相关的所有WooCommerce先前版本代码过时将不再有效

  

有关信息global $woocommerce; ** $woocommerce->cart 已替换为 WC()->cart < / strong>即可。
  您将使用 WC()->cart->get_cart() ...

我们不再需要您的自定义条件函数,因为WordPress中已存在一个条件函数,您可以将其作为WooCommerce产品类别的目标。此函数接受术语ID,术语slug或术语名称:

has_term( 'your_category', 'product_cat', $post_id )

因此,我们可以在此代码中使用 has_term() 条件函数:

add_filter( 'woocommerce_package_rates', 'conditional_hide_shipping_methods', 100, 2 );    
function conditional_hide_shipping_methods( $rates, $package ){

    // Define/replace here your correct category slug (!)
    $product_category = 'your_category';
    $prod_cat = false;

    // Going through each item in cart to see if there is anyone of your category        
    foreach ( WC()->cart->get_cart() as $cart_item ) {
        $product_id = $cart_item['product_id'];
        if ( has_term( $product_category, 'product_cat', $product_id ) ){
            $prod_cat = true;
        }
    }

    $rates_arr = array();

    if ( $prod_cat ) {
        foreach($rates as $key => $rate) {
            if ('free_shipping' === $rate->method_id || 'local_pickup' === $rate->method_id || 'local_delivery' === $rate->method_id) {
                $rates_arr[ $rate_id ] = $rate;
                break;
            }
        }
    }
    return !empty( $rates_arr ) ? $rates_arr : $rates;
}
  

在添加代码段之前,请确保清除您的WooCommerce缓存(WooCommerce&gt;系统状态&gt;工具&gt; WC瞬态&gt;清除瞬态),因为运送方法已缓存。

此代码会显示您的活动子主题或主题的function.php文件。

如果您有正确的set your shipping zones…

,此代码应该

参考文献: