Skip to content

Instantly share code, notes, and snippets.

@woogists
Created July 4, 2018 11:19
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save woogists/57e4cf73f083190c0e00bd59f060f87d to your computer and use it in GitHub Desktop.
Save woogists/57e4cf73f083190c0e00bd59f060f87d to your computer and use it in GitHub Desktop.
[General Snippets][Hide other shipping methods, but keep "Local pickup" when “Free Shipping” is available]
/**
* Hide shipping rates when free shipping is available, but keep "Local pickup"
* Updated to support WooCommerce 2.6 Shipping Zones
*/
function hide_shipping_when_free_is_available( $rates, $package ) {
$new_rates = array();
foreach ( $rates as $rate_id => $rate ) {
// Only modify rates if free_shipping is present.
if ( 'free_shipping' === $rate->method_id ) {
$new_rates[ $rate_id ] = $rate;
break;
}
}
if ( ! empty( $new_rates ) ) {
//Save local pickup if it's present.
foreach ( $rates as $rate_id => $rate ) {
if ('local_pickup' === $rate->method_id ) {
$new_rates[ $rate_id ] = $rate;
break;
}
}
return $new_rates;
}
return $rates;
}
add_filter( 'woocommerce_package_rates', 'hide_shipping_when_free_is_available', 10, 2 );
@philmorley
Copy link

philmorley commented Mar 10, 2021

How Can I show 2diffrent "local pickup" When free shipping is available Like I have 2 local pickup shipping method,

  1. First One is "Local Pickup"
  2. Second one is "Order In Table",

So, How can I show both of them when Free shipping is available.
Note: Both are Local pickup

Same problem here. Dont show more than 1 local pickup.

Remove break; from line 21

@imdimasan
Copy link

Okay. it works. But how can I sort free shipping under local pickup?

I mean when free shipping unavailable, my list looks like:
Local
Post 5$
Courier 10$

When free shipping available my list looks like:
Free shipping
Local

I want to shos as:
Local
Free shipping.

Thank for reply!

@BenAngels
Copy link

Hi, this great snippet always worked fine. However not anymore with the new Woocommerce version Versie 8.6.1 it works not anymore (for me). Can't find if something changed. Anyone an idea to get it working again?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment