首页 > 解决方案 > 如何在 WooCommerce 中隐藏某个类别的运输区域?

问题描述

本质上,我试图隐藏某个类别的一些运输区域。任何帮助将不胜感激。

示例 - 有5个运输区,当披萨类别选择时,必须隐藏2个运输区域

也许有帮助-如果在某个类别上启用了免费送货,我使用此代码隐藏其他送货方式

add_filter( 'woocommerce_package_rates', 'bbloomer_unset_shipping_when_free_is_available_in_zone', 10, 2 );

function bbloomer_unset_shipping_when_free_is_available_in_zone( $rates, $package ) {

// Only unset rates if free_shipping is available
if ( isset( $rates['advanced_free_shipping'] ) ) {
     unset( $rates['shipping_method_0_flat_rate2'] );
}     

return $rates;

}

标签: phpwordpresswoocommercecartshipping-method

解决方案


推荐阅读