WooCommerce: Disable Shipping Rate if Cart has Shipping Class
particle/** * @snippet Disable Free Shipping if Cart has Shipping Class (WooCommerce 2.6+) * @how-to Watch tutorial @ https://businessbloomer.com/?p=19055 * @sourcecode https://businessbloomer.com/?p=19960 * @author Rodolfo Melogli * @testedwith WooCommerce 2.6.1 */ add_filter( ‘woocommerce_package_rates’, ‘businessbloomer_hide_free_shipping_for_shipping_class’, 10, 2 ); function businessbloomer_hide_free_shipping_for_shipping_class( $rates, $package ) { //Shipping class D $shipping_class_target = 431; $in_cart = false; foreach( WC()->cart->cart_contents as […]