WooCommerce - Hide other shipping methods when FREE SHIPPING is available
I would like to hide other shipping options when free shipping is available on Woocommerce. Because latest version of woocommerce now is still showing other shipping options even if there's FREE shipping option. Please help There is this recent code snippet for WooCommerce 2.6+. that you can try: add_filter( 'woocommerce_package_rates', 'hide_other_shipping_when_free_is_available', 100, 2 ); function hide_other_shipping_when_free_is_available( $rates, $package ) { $free = array(); foreach ( $rates as $rate_id => $rate ) { if ( 'free_shipping' === $rate->method_id ) { $free[ $rate_id ] = $rate;