If Free Shipping is available, you possibly don’t want to show the other premium shipping options. WooCommerce shows by default all shipping rates that match a given shipping zone, so it’s not possible to achieve this from the settings alone.
Thankfully, the “woocommerce_package_rates” filter allows us to manipulate the shipping rates before they are returned to the frontend. In this example, we will disable all shipping methods but “Free Shipping” so that free shipping remains the only possible choice.
Here’s the code to add to your functions.php. Enjoy!
PHP Snippet #1: Unset Specific Shipping Rate When Free Shipping Rate is Available
/**
* @snippet Hide one shipping rate when Free Shipping is available
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @compatible WooCommerce 6
* @community https://businessbloomer.com/club/
*/
add_filter( 'woocommerce_package_rates', 'bbloomer_unset_shipping_when_free_is_available_in_zone', 9999, 2 );
function bbloomer_unset_shipping_when_free_is_available_in_zone( $rates, $package ) {
// Only unset rates if free_shipping is available
if ( isset( $rates['free_shipping:8'] ) ) {
unset( $rates['flat_rate:1'] );
}
return $rates;
}
PHP Snippet #2: Unset ALL Shipping Rates in ALL Zones when ANY Free Shipping Rate is Available
/**
* @snippet Hide ALL shipping rates in ALL zones when Free Shipping is available
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @compatible WooCommerce 6
* @community https://businessbloomer.com/club/
*/
add_filter( 'woocommerce_package_rates', 'bbloomer_unset_shipping_when_free_is_available_all_zones', 9999, 2 );
function bbloomer_unset_shipping_when_free_is_available_all_zones( $rates, $package ) {
$all_free_rates = array();
foreach ( $rates as $rate_id => $rate ) {
if ( 'free_shipping' === $rate->method_id ) {
$all_free_rates[ $rate_id ] = $rate;
break;
}
}
if ( empty( $all_free_rates )) {
return $rates;
} else {
return $all_free_rates;
}
}
Shipping rates not hiding after implementing these snippets?
You probably need to:
a) empty the Cart and start testing again
b) clear customer sessions:
I need exactly the opposite. I have 2 products in my shopping cart (1x free shipping and 1x paid shipping). By default WooCommerce shows both shipping options in checkout which is wrong in my opinion. So I need an option to hide the free shipping and only show the paid shipping option.
Hey Tobias, you just need to play with this and unset the free_shipping rate when the flat_rate is available instead:
Thank you, option 2 worked for me! Saved me from hiring someone.
Excellent!
What a wonderfull snippet!
I do have a question, and its probally my limited knowledge.
Basically we have 2 shipment methods with both 2 variations. Standard Delivery (6,99 or free) and Servicepoint delivery (6,99 or free). These 4 options are 4 different shipping methods on WordPress. Whenever the free shipping becomes available I want to hide the shipping with rates to disapear. And whenever you have to pay for shipping I want the free service point to disappear.
I have 3 snippets but only the first one works. What am I doing wrong? Thank you to any comments in advance!
Title: Hide standard delivery if free delivery is available
Title: Hide paid pickup point if free shipping is available
Title: Hide free pickup point shipping is standard (paid) delivery is available
I solved it after scrolling a little bit further, ill keep the post up for anyone who’s wondering how to solve the problem. Empty the cart and hide a new one and rename the function so each snippit is unique.
Great!
Works perfect. Just a tip/addition: If you have 2 different free shipping rates (yes, it makes sense if you want to let customers choose their preferred shipping company π ), then simply delete the “break” from PHP Snippet #2. Otherwise it would only show the first free shipping method.
Great!
Thank you so much. Still works!
Cool!
Thanks Rodolfo for this snippet.
My current setup is as follow:
I offer two shipping options plus FREE shipping when you buy 3 items +
To set the FREE shipping rule I am using the plugin Advanced Free Shipping
My use case now, is that I want to offer the ability to ship the item quicker for those who also qualify for FREE shipping, so after implementing your code, I get the end result where FREE shipping shows and the express shipping shows too but the FREE shipping shows as the second option. In the Shipping zones setup, I have FREE shipping as the top shipping option in the backend, so I’m not sure why the ordering isn’t being taken into account. Could you shed any light on how I make the FREE option be the top shipping option and the express the bottom one?
Weird, it should respect the sorting you have in the admin. Just out of curiosity, can you rename “express shipping” as “ZZZexpress”, to see if it takes alpha sorting instead?
I’ve tried the first option on my site but it doesn’t appear to be working
Weird. To troubleshoot, disable all plugins but WooCommerce and also switch temporarily to “Twentytwenty” theme (load the snippet there in functions.php) as explained here: https://www.businessbloomer.com/lesson/trwm4l01/
Once you do that, does it work? If yes, you have a problem with your current theme or one of the plugins.
Hope this helps!
HI thank you for the code. I need something different . i have three shipping methods in my store. 1. Table Rate 2.Free Shipping 3.Local Pickup . in checkout and cart page these three option are available. what i want to do is if some one select the free sipping or the local pickup i want ot show the table rate value as zero(0.00). if they select the table rate then the value should appear. when i used the above code in your post is completely hide the table rate option. so that can not select back. can this be achieved with code? or is there any plugins to get this task done.? please advice needed. thanks in advance.
Hi Terrance, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
PHP Snippet #1 works like a charm!
Great job, thanks π
Cool
Rodolfo, I have used multiple snippets from BusinessBloomer, and I can’t thank you enough for how much you’ve helped my businesses! I used PHP #2 above, and my site is on Woo 4.3.3, Flatsome Theme 3.12.2 (using a child theme), and WordPress 5.4.2. The site is on AWS via Cloudways. The snippet worked like a charm. Thank you again!
Brilliant
Hi Rodolfo and thank you for this post.
I tried everything you suggested but unfortunately it does not work.
I have to say that I tried several plugins and no one is working. Maybe it is something related to some setting in particular?
Ciao Antonello, try to empty your cart first and then test again
Hi Rodolfo and thank you for your great snippets!!!
Maybe Antonello has to change the IDs after the slug according to his settings. IDs “8” & “1” in your example:
free_shipping:8
flat_rate:1
Regards,
Dimis
God bless You, Rodolfo!!!
Your snippet works!
Thank You!
Cheers!
Hi,
We have a WooCommerce site and are having trouble with the Shipping configurations.
In a nutshell this is what we need,
Australian Orders over $100 Free Shipping
Australia Standard Shipping $10.00
Australia Express Shipping $15.00
New Zealand Standard $15.00
USA, Canada, Ireland $35.00
All Other Countries $45.00
I cannot get this done with my developer for some reason, he is having a lot of difficulty doing this. We also wanted to hide the Standard Shipping option on Australian Orders over $100 and default to the Free Shipping option but still have the Express option as an upgrade.
Lastly, there are some individual products that we offer Free Shipping for and he also cannot find a way to configure this. Obviously it would be required when it is below the $100 threshold only apply if the product is purchased alone. If the cart has other items that are do not have Free Shipping it would then default to the normal options.
Can this be done, and if so is it custom or is it standard in WooCommerce?
Hi Adrian, thanks so much for your comment! Yes, this is custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hi!
I have 2 free shipping methods so i need to unset the other shipping method when either 1 of the free shipping methods is activated.
I tried below but it didn’t work for the 2nd free shipping method. What am I doing wrong?
Thank you!
Hi Man, you have to “return $rates” only once, at the very end.
Just what I needed thank you. I always come to your site first for help.
Thank you!
Hello Rodolfo,
We have created a plugin and published it on WooCommerce.com to solve this problem.
https://woocommerce.com/products/hide-shipping-methods-for-woocommerce/
I hope you can include this plugin on your article.
Thanks,
Divya
Nice, well done
Worked perfectly. Thankyou very much
Awesome!
Works beautifully!
Thanks Rodolfo!
Great!
If people are still using legacy shipping methods this will not work, because the shipping methods need to be prefixed with a “legacy_”.
Took me a while to figure it out.
Thanks!
Hi Rodolpho,
How can I set woo when I have free shipping over 15$ and 1 product (free+ shipping) who doesn’t be include in the free shipping.
For example for Free shipping over 15$:
– product A = 10$ + 5$ shipping and product B = 0β¬ (promotion) + 5$ shipping
– Cart = A*2 and B*3
I would like the shipping cost is 15$ (A*2 >15$ = free shipping and B*3 = 5$*3 = 15$ shipping)
Usually, I have two shipping option in the cart: 25$ (5 qty) or Free. In this cas a customer can take 2 product A and 20+ product B…
Thank you very much Rodolpho,
Hi Stan, thanks so much for your comment! Yes, this is possible – unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. Thanks a lot for your understanding! ~R
Such a helpful post! Bravo!
I managed to conditionally hide my Standard Shipping rates when free was available but leave the Express Shipping option always on (even for multiple shipping zones). Couldn’t do it with other plugins and I did it with your nice little code.
Thank you for your kind contribution to the WooCommerce ecosystem π
Excellent π
Hi Rodolfo,
It works great for 1 country. But I ship to all EU countries (each country seperate zone) so all the shipping methods got another number as ID. How can I catch them all? Could you update your code so that it loops through all ID’s of the Flat Rate and Free Shippings in all zones?
Thank you in advanced,
Frank
Hello Frank, thanks so much for your comment! Yes, this is possible – but unfortunately this is custom work and I cannot provide a complementary solution here via the blog comments. Thanks a lot for your understanding! ~R
Great job! Still working. Thanks!
Genial! π
Not is working on 3.1.1. Can you help me?
Hi Herbamedica, I just tested my snippet on default Storefront and WooCommerce 3.1.1 and it works fine.
Go to WP Dashboard > WooCommerce > System Status: what errors do you see in red font?
Also, take a look at this tutorial to see how to troubleshoot: https://businessbloomer.com/woocommerce-troubleshooting-mistakes-to-avoid/
Hope this helps!
R
Thank you very much for sharing the code, but he does not work at 3.0.x.
have any Update?
Thanks for your feedback Tung. Can you try with the latest 3.0.5 please?
Hi!
After update to 3.0.7 not work π
Please help.
Thanks.
Hey Bela π Are you sure?
Hi Radolfo
I really enjoy your videos thank you so much for sharing.
Please I need help I am trying to tackle an issue.
I need to hard code the shipping rate per (specific) products in my woo commerce site and hide the other shipping rate values displayed in the checkout page? Please how will I go about this
Quick overview
I am running a special where customer get the product for free but have to pay shipping and handling rate of $7.99.
I do not want them to see the other shipping rates available.
Sophia, thanks for your comment! I can’t specifically help here via the blog, but maybe this might help https://businessbloomer.com/woocommerce-disable-free-shipping-if-cart-has-shipping-class/?
Hi Rodolfo,
I’ve tried using both snippets above, but I can’t seem to get this to work. When an order amount totals over $50, it should show only free shipping and local pickup (if their zipcode matches the predefined in local settings) and unset the flat_rate. If the amount totals under $50, it should not show free delivery. I have everything working properly with this code:
EXCEPT that it does not unset the flat rate. I’m pulling my hair out. Please help!
I was able to get it fixed. Thank you so much for these snippets and tutorials!
Awesome to hear that Chris! What was the problem?
I had two different zones set up in Woocommerce and didn’t realize how they were being affected by the code. Once I was able to sort that out, I had a script run for both sets of zones and it fixed my problem.
Excellent Chris, thank you for the follow up!
Hi,
Thanks for the great codes! I have the following situation. I use the following code to hide the flat-rate (:1) for zone 1 when free shipping (:2) is available:
However, I have a second zone (zone 1 = Netherlands / zone= Belgium) that uses different id’s for the flat rate (:5) and free shipping (:4). How can I make sure it also hides the flat rate for Belgium (:5) when free shipping (:4) is available there?
Kind regards,
Lars
Hello Lars, thanks so much for your comment! You can simply add another “if isset… unset” line to the function, and in this way target multiple shipping methods. Let me know!
Hello Rodolfo,
I have a multilingual website based on WP 4.5.3 + WC 2.6.4 + the latest WPML
I want to disable all the shipping rates on all the zones when the free shipping applies (cart over 200 pln, the Polish currency, or over 200 euros), so I pasted at the bottom of functions.php the snippet
the same way I did previously with many other snippets on WordPress. I erased all the WC caches and so on but I just can’t have the result I am looking for
What could it be the issue?
Thank you so much for your help!
Hello there, and thanks SO MUCH for your comment! I’m afraid I don’t provide custom work or WooCommerce support to free subscribers, I hope this is understandable. I hope you find a working snippet, best of luck π
I tried using your code and it doesn’t work unfortunately, it is still showing the flat rate shipping fee and defaulting to it in woo commerce. Am I doing something wrong
Hey Peter, thanks for your comment! It’s difficult to say as I have no idea about your shipping settings and if you correctly identified the shipping zone codes π If you want to share your checkout link and explain what you’re trying to hide, that might allow me to troubleshoot your problem! Cheers, R
Hi Rodolfo,
For WC 2.6+ how would I unset 1 rate in each zone?. Your first snippet worked great for my Local Delivery Shipping Zone but I also need to do the same for my UK Shipping Zone, so how would I add multiple instance IDs to your code?
Any help would be greatly appreciated.
Thanks,
Andy
Hey Andy, thanks for your comment! If I understood well, I guess you just need to add another “unset” line:
Thank you so much for the snippet, it works!
Brilliant – thanks a lot for your feedback Stray!
Hi Rodolfo!
First I need to greet you for your great website and all your woocommerce tips! They’re very very useful!!
And I’d like to show you a snippet that I’m trying to implement in my woocommerce website.
Basically, I’m trying to hide free shipping option when the order total is under the minimum amount. It happens that it’s not working properly (I get the message “No available shipping methods”), so if you get a time to have a look, I appreciate! Thank you
Hey Taysa, thanks so much for your comment! FYI, you can set up the “minimum free shipping threshold” in the WooCommerce settings, no need to use PHP π Go to WooCommerce > Settings > Shipping > Free Shipping > Minimum Order Amount π
Hi Rodolfo, thanks for your reply!
I explain the reason that I’m trying to do that. The woocommerce default shipping calculation is applied to the subtotal, but I’m using a plugin that applies a discount (what is not bein consideratred by woocommerce shipping calculation). So in the snippet I tried to set the free shipping based on “cart_contents_total” and not to “subtotal”. So I thought that if I could hide free shipping ih the cases that the discount decrease the total order amount under the minimum amount it would solve my problem. Could you give me a hint?
P.S. I can’t find any plugin which can do that :-/
Gotcha π
I took a look at your snippet, it looks perfect apart from the position of “return $rates”. This should be placed OUTSIDE the if statement π Let me know if that works for you.
R
Hi Rodolfo!
I put βreturn $ratesβ outside the if statement as you said. Now it’s not giving me the error anymore, but Free shipping is still being showed even that total is under the minimum amount. Do you know if there’s another variable apart from “subtotal” and “cart_contents_total” that is used by woocommerce in the checkout calculation? Thanks again π
Yes Taysa, there are many more variables – check https://docs.woothemes.com/wc-apidocs/class-WC_Cart.html and scroll down until you find get_total( ) – all the other variables will be underneath it. Hope this helps!
Well I appreciate your help , but that code
breaks my store too. Not sure why I canβt figure this out, must be something to do with the shipping classes that Iβm not entering correctly. I have taken up too much of your time already and canβt keep breaking the site trying to change and guess what Iβm doing wrong every few minutes, so I guess I will just have to skip adding that function.
Any chance this is closer to the right code I need to make this work or am I way off?
Thanks again for your time!
Hey Courtney, I just checked your second code on my dev site and it works like a charm π Send me your WP and FTP details via the contact page and I’ll get this done for you π
Thank you for checking it out and for all of your help! I was able to add it to store and it is working. I now just have one problem with it.(that hopefully is an easy fix)
When an item from the shipping class that removes USPS rates gets added (for example shipping class “Watch”) to the cart everything works great and the USPS rates are removed. However if an item from a different class (shipping class “Tshirt” gets added to the cart with the “Watch” item then the USPS rates do not show back up they stay hidden.
I need the USPS rates to show up if any item other than just shipping class “watch” is in the cart.
It’s only when only shipping class “watch” is in the cart that I need USPS rates gone.
Cart contains “Watch” or “Watch” + “Watch” = No USPS
Cart contains “Watch” + “Tshirt”= USPS rates visible
Hope this makes sense.
Code I have implemented on site is this one
Hey Courtney π
I think you have a couple of missing checks there. First, you’re not really using “$if_exists” – only if that is true you want to remove USPS. Second, you should add a PHP counter that counts how many shipping classes you have while you do the foreach – if this is greater than 1 then you have multiple classes and you don’t want to run the “unset”.
Hope this helps π
I have a unique situation I hope you could help offer code for my site.
I want to be able to show only one shipping method when products of a certain shipping class are in the cart, but if a product from another shipping class gets added to the cart I need all the methods to show up again.
Hey Courtney, thanks so much for your comment! I think you can find the solution here: https://bolderelements.net/support/knowledgebase/hide-shipping-method-when-cart-contains-shipping-class. Hope this helps π
Rodolfo thank you I did try to use the shipping class method but it doesn’t seem to produce and results. This is the code I used:
It looks good, however the USPS $rates work slightly different from the default WooCommerce ones. You have to add some more lines of PHP instead of just:
This article will help you figure what you need: https://docs.woothemes.com/document/usps-shipping/#section-10
Hope this helps π
Thank you I’m pretty new to trying to edit my on website code, so I appreciate your time and help. I tried a few variations, but each one broke my site, so not sure what I’m still doing wrong. I used this code now
Hey Courtney! You have a couple of syntax errors (missing parenthesis):
Worked for me!
Thank you so much, you rock!
Awesome, thanks for your feedback Fred! π
Hi,
I’ve used this code snippet now to hide flat rate when free shipping is available (above 50β¬). But for some reasons it’s now always hidden. I want to use flat rate under 50β¬ (and hide free shipping), while using free shipping above 50β¬ (and hide flat rate).
/**
* woocommerce_package_rates is a 2.1+ hook
*/
add_filter( ‘woocommerce_package_rates’, ‘hide_shipping_when_free_is_available’, 10, 2 );
/**
* Hide shipping rates when free shipping is available
*
* @param array $rates Array of rates found for the package
* @param array $package The package array/object being shipped
* @return array of modified rates
*/
function hide_shipping_when_free_is_available( $rates, $package ) {
// Only modify rates if free_shipping is present
if ( isset( $rates[‘free_shipping’] ) ) {
// To unset a single rate/method, do the following. This example unsets flat_rate shipping
unset( $rates[‘flat_rate’] );
}
return $rates;
}
Hope you could help me out. Thanks!
Hey Neal thanks for your message. The snippet should work, so I fear you didn’t set up the “Free Shipping” method properly. If you go to WooCommerce/Settings/Shipping/FreeShipping, do you see “50” in the Minimum Order Amount and do you see “A minimum order amount…” in the “Free Shipping Requires…” dropdown?
Hmm that was a stupid mistake of me. Exactly forgot to select ‘a minimum order amount’ in the dropdown. Thanks for helping me out!
Ahaha, excellent π Glad you sorted it out!
Hello,
Thanks for the tip, really helpful.. I have added the code to my functions.php file and it does work but only on the checkout page. Any ideas for the cart page?
Thanks
Thanks for your feedback Nikolas! woocommerce_package_rates should work on both Cart and Checkout page, so this is strange! Did you get this sorted?
Hi Rodolfo,
Not sure what good i did these few days to find your amazing site. This is like a gold mine for Woo website owners. Thank you so much for sharing!
I’m trying to implement something similar, would appreciate if you can show me the snippet for this.
We have 2 delivery options. 1. delivery cost (via flat rate) 2. office pickup
Now we have 4 payment options at checkout. 1. cards 2. bank 3. COD 4. pay at office
If a customer selects “office pickup” at checkout page, we want payment option 3. COD to hide.
How can we achieve this?
Thank you again!
Ran
i got this done. Found the solution at wordpress.com π
Excellent π
Hi Rodolfo,
The shipping methods I’m using on my site are – Flat Rate (Only to Australia) and Australia Post (International). Is there any way I can hide the Australian Post when Flat Rate is available?
Your help would be much appreciated.
Many thanks
Hello Rod! Yes of course. Just go to Woocommerce > Settings > shipping and identify your Shipping ID (see image). Then, use the same rule. R
Thanks Rodolfo, helped a lot
Cheers Prabhdeep!
Thank you very much for this snippet!!
I’ve tried so many that did not work, until yours did!
Best regards,
Ofer
Thank you Ofer!
Hi Rodolfo,
I’ve tried to add the code without results – I’m trying to hide the local_delivery.
Any idea?
Thanks!
Isa, try this:
It works perfectly now!
I just see the free shipping when it’s available. But I have some different options for shipping and I want to leave free_shipping and local_delivery as well. How can I add local_delivery here?
$free_shipping = $rates[‘free_shipping’];
$rates = array();
$rates[‘free_shipping’] = $free_shipping;
Thanks Rodolfo!
Awesome Isa! If you want to unset all rates but free shipping and local delivery you will have to use the other code:
I have now this code:
add_filter( ‘woocommerce_package_rates’, ‘hide_shipping_when_free_is_available’, 10, 2 );
function hide_shipping_when_free_is_available( $rates, $package ) {
if ( isset( $rates[‘free_shipping’] ) ) {
unset( $rates[‘local_delivery’] );
unset( $rates[‘WC_Weight_Based_Shipping_main’] );
unset( $rates[‘WC_Weight_Based_Shipping_1432200267’] );
unset( $rates[‘WC_Weight_Based_Shipping_1429291395’] );
unset( $rates[‘WC_Weight_Based_Shipping_1432200691’] );
unset( $rates[‘WC_Weight_Based_Shipping_1432200297’] );
unset( $rates[‘WC_Weight_Based_Shipping_1432200225’] );
unset( $rates[‘WC_Weight_Based_Shipping_1432205333’] );
unset( $rates[‘WC_Weight_Based_Shipping_1432205375’] );
unset( $rates[‘WC_Weight_Based_Shipping_1432205184’] );
unset( $rates[‘WC_Weight_Based_Shipping_1432205425’] );
unset( $rates[‘WC_Weight_Based_Shipping_1432205456’] );
unset( $rates[‘WC_Weight_Based_Shipping_1432205508’] );
}
return $rates;
}
And I have local_pickup as well, which I want to show with free_shipping when this is available, but still now I see just free_shipping. Any idea?
Isa
Remove this line: unset( $rates[‘local_delivery’] );
Actually it’s a different shipping local_delivery (we send the package cheaper because it’s local) than local_pickup (user can come to the shop and pick up the package). But anyway, even removing this line
unset( $rates[βlocal_deliveryβ] );
The only shipping method available is free shipping.
Weird π
Try this (if this does not work, then there is some advanced customization that needs to be done due to your template or specific functionalities I’m afraid):
…
…
if ( isset( $rates[‘free_shipping’] ) ) {
// basically put all the unset rates in one line of code
unset( $rates[‘flat_rate’], $rates[‘second_rate’], $rates[‘third_rate’] );
}
…
…
Rodolfo,
It doesn’t work, probably it’s my template as you said. We have tried but the result is still just the free_shipping option.
Thanks for your help Rodolfo!
No problem Isa, thanks for letting me know π What template are you using?
I tried something similiar to this to exclude multiple lines within table_rates shipping but to no avail
also tried
but also with no joy
Hi Daniel, thanks so much for your comment! I’m afraid this is custom troubleshooting work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Worked perfectly. Thank You.
Thanks for the feedback Raj!
Nice code snippet. Worked fine but there is a little customization that I want. I also want to display express delivery option that I am managing with Woo commerce Table Rate Shipping plugin. Any idea how to display that express delivery rate too ?
Thanks for your comment Bilal π
Table rates plugin creates multiple sub-rates called “table_rate-1”, “table_rate-2” etc. You can find the exact IDs under Shipping Zones / your_zone. If you want to target them all, you can use the following:
Hope this helps!
Thanks..it worked..
Awesome π
Hey
Actually i have setup my shipping options for free shipping (Above 500) and flat rate (Below 500).
Now the problem is that when an item qualifies for free shipping(ie order above 500), the flat rate charges still keep showing up as an option on cart and checkout page.
Please help, Thanks
Are you using this function?
Hi! Many thanks for your post! I was searching right for this snippet!
I have 3 shipping methods. If free shipping is available, I’d like to show two of them.
It was simply to unset the flat rate! Genius!
Thanks, regards.
Thank you, really appreciate your feedback π