WooCommerce: Hide other shipping methods when Free Shipping is available.
function wpexpert28_hide_shipping_when_free_is_available( $rates ) { $free_shipping = array(); // Loop through each shipping rate foreach ( $rates as $rate_id => $rate ) { // Check if the shipping method is Free Shipping if ( ‘free_shipping’ === $rate->get_method_id() ) { $free_shipping[…Continue reading