Skip to main content
Login Join
Snippet · PHP

Hide Shipping Methods Based on Cart Total

Shared by Darshit Rajyaguru · April 28, 2026 · @woocommerce_package_rates

27 views
2 upvotes
Back to Snippets

Free shipping option available only if the amount is above the threshold (Flat Rate + Free Shipping).

add_filter( 'woocommerce_package_rates', function( $rates, $package ) {

    $threshold = 3000;

    if ( WC()->cart->subtotal >= $threshold ) {
        foreach ( $rates as $rate_id => $rate ) {
            if ( 'flat_rate' === $rate->method_id ) {
                unset( $rates[ $rate_id ] );
            }
        }
    }
    return $rates;

}, 10, 2 );