Hi i need help i my store , i need to Remove Minimum spend messager for free shopping Tried adding code themes.liquid and main cart still no luck https://thrifthunters.us/
Topic summary
Goal: Remove the âAdd More $60 for Free Shippingâ notice shown in the cart drawer (the slide-out mini-cart) on a Shopify theme.
What happened:
- Merchant initially tried edits in theme.liquid and the main cart without success.
- Suggestions included: checking Theme Customize settings for a cart drawer toggle, and adding code in theme.liquid (shared with a result screenshot).
- Working fix provided: edit Online Store > Themes > Edit code > assets/component-cart-drawer.css and add CSS to hide the free-shipping element within the cart drawer.
Outcome:
- Merchant confirmed the CSS approach removed the message successfully.
- Screenshots were shared to illustrate the result.
Status: Resolved. No further action requested.
Notes:
- âCart drawerâ refers to the slide-out cart panel. The solution targeted the free shipping UI element via CSS in the themeâs CSS asset file.
@ThriftHunters check customize settings and open cart drawer, check if you have any settings to remove this message?
Hey @ThriftHunters
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, donât forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @ThriftHunters
Go to online store ----> themes ----> actions ----> edit code ----> assets ---->component-cart-drawer.css
add this code at the end of the file and save.
.cart-drawer .free-shipping {
display: none;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Worked Perfectly, Thanks
Now no more âAdd More $60 for Free Shippingâ message.. Thanks
Thank you for your reply. Iâm glad to hear that the solution worked well for you. If you require any more help, please donât hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

