Hide other shipping methods if free shipping is enabled
-
Hello!
I have 2 delivery methods on our store. We have pickup and delivery. I want to enable free shipping for orders over 100 €, so I added Free shipping method. Set the minimum price for it to show and I guess it works.
However – I want the delivery (not free) option to disappear if the customer reaches over 100 €.
I was already searching for a solution, found the code below, but it doesn’t work..
function my_hide_shipping_when_free_is_available( $rates ) { $free = array(); foreach( $rates as $rate_id => $rate ) { if( 'free_shipping' === $rate->method_id ) { $free[ $rate_id ] = $rate; break; } } return ! empty( $free ) ? $free : $rates; }
——————————————-
Another thing – I have two shipping classes on my site. I only need the free shipping to be active for one of those shipping classes.
What can I do?
Kind regards
The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Hide other shipping methods if free shipping is enabled’ is closed to new replies.