Hide Other Shipping Methods when Free Shipping is Available

PHOTO EMBED

Sat Apr 16 2022 08:06:59 GMT+0000 (Coordinated Universal Time)

Saved by @netropol #php

add_filter( 'woocommerce_package_rates', 'snippetpress_hide_shipping_when_free_is_available', 100 );
function snippetpress_hide_shipping_when_free_is_available( $rates ) {
    $free_shipping = array();
    foreach ( $rates as $rate_id => $rate ) {
        if ( 'free_shipping' === $rate->method_id ) {
            $free_shipping[ $rate_id ] = $rate;
            break;
        }
    }
    return ! empty( $free_shipping ) ? $free_shipping : $rates;
}
content_copyCOPY

https://snippetpress.com/woocommerce-hide-other-shipping-methods-when-free-shipping-is-available/