我想取消设置固定费率的运输方式只有当车中有既没有运输类产品。 如果在车中的所有产品具有运输类,那么就应该留下来。
有这样的运输方式:固定费率 - (flat_rate1)(INSTANCE_ID = 1)
而这些航运类:50,100等等,名为蛞蝓一样:50,100 ...
扁平率送货方式已设立这些航运类,主要成本并没有找到方法运输类费用没有设置成本,因此它只出现产品车有集海运类。
得到它的工作
add_filter( 'woocommerce_package_rates', 'unset_shipping_for_unmatched_items', 100, 2 );
function unset_shipping_for_unmatched_items( $rates, $package ) {
// Initialisation
$shipping_classes = array( 50, 100, 150, 200, 250, 300 );
$cart_items = WC()->cart->get_cart();
$cart_items_count = WC()->cart->get_cart_contents_count();
$items_match = false;
$inArray = 0;
$notInArray = 0;
foreach( $cart_items as $cart_item ){
if( in_array( $cart_item[ 'data' ]->get_shipping_class(), $shipping_classes ) && $cart_items_count > 1 ) {
$inArray++;
} else {
$notInArray++;
}
}
if( ( $cart_items_count == $notInArray ) || ( $cart_items_count == $inArray ) ){
$items_match = false;
} else {
$items_match = true;
}
if( $items_match )
unset( $rates['flat_rate:6'] );
return $rates;
}