I'm looking to see if it's possible to disable all/specific shipping options when an product of a specific shipping class is in the cart. However, this rule would only apply when the specific product is the ONLY item in the cart. If any other products are present then the default shipping options would display. This is what I have used previously
add_filter( 'woocommerce_package_rates', 'custom_hide_shipping_for_shipping_class', 9999, 2 );
function custom_hide_shipping_for_shipping_class( $rates, $package ) {
$shipping_class_target = 569; // shipping class ID
$in_cart = false;
foreach ( WC()->cart->get_cart_contents() as $key => $values ) {
if ( $values[ 'data' ]->get_shipping_class_id() == $shipping_class_target ) {
$in_cart = true;
break;
}
}
if ( $in_cart ) {
unset( $rates['free_shipping:8'] ); // shipping method with ID
}
return $rates;
}
However the above code will work in spite of other products being in the cart. I only want this to work if the specific product is the sole item in the cart.
Can the code above be tweaked or does it require a different approach?
To make it work, only if the specific product is the only item in the cart, try the following:
It should work.
For Multiple targeted shipping methods to hide, use something like: