Free Shipping showing up as an option in the checkout
-
I followed the instructions on how to add the “free shipping progress bar”. It worked well, but after last theme update the option now appeared in the shipping methods section as well. It’s confusing for my customers.
Attachments:
You must be
logged in to view attached files.
Hello,
The Free Shipping Progress Bar added by the theme is different from the Free Shipping shipping method that appears on the cart/checkout pages. The progress bar is a visual guide to encourage customers to reach the free shipping threshold, while the shipping method itself comes from WooCommerce settings.
You can check it from WooCommerce -> Settings -> Shipping -> Shipping Zones, but if you want to hide it, add the following code in Theme Settings > Custom CSS:
.woocommerce-shipping-methods li:has([value*="free_shipping"]) {
display: none !important;
}
Best Regards