Custom Snippet

Use this tool to share WordPress snippets with the community.

  Save Snippet
add_filter( 'woocommerce_package_rates', 'wylaczenie_wybranych_wysylek', 10, 2);
function wylaczenie_wybranych_wysylek( $rates, $package ) {
	$cart_subtotal = $package['contents_cost'];
	if ( $cart_subtotal < 200 ) {
		unset( $rates['flat_rate:2'] );
		unset( $rates['flat_rate:3'] );
	}
	else {
		unset( $rates['flat_rate:6'] );
	}
	return $rates;
}