Skip to content

Instantly share code, notes, and snippets.

@pelmered
Last active September 4, 2017 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pelmered/d35090e8a6e522f5ad128120ee6768bd to your computer and use it in GitHub Desktop.
Save pelmered/d35090e8a6e522f5ad128120ee6768bd to your computer and use it in GitHub Desktop.
Hide other shipping methods except local delivery when “Free Shipping” is available
/**
* Hide shipping rates except local delivery when free shipping is available.
* Updated to support WooCommerce 2.6 Shipping Zones.
*
* @param array $rates Array of rates found for the package.
* @return array
*/
function my_hide_shipping_when_free_is_available( $rates ) {
$free = array();
$local_pickup = array();
foreach ( $rates as $rate_id => $rate ) {
if ( 'free_shipping' === $rate->method_id ) {
$free[ $rate_id ] = $rate;
}
elseif ( 'local_pickup' === $rate->method_id ) {
$local_pickup[ $rate_id ] = $rate;
}
}
if( !empty( $free ) ) {
return array_merge( $free, $local_pickup );
}
return $rates;
}
add_filter( 'woocommerce_package_rates', 'my_hide_shipping_when_free_is_available', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment