Remove Minumum Spend Message for my theme

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.
Summarized with AI on December 15. AI used: gpt-5.

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/

@ThriftHunters check customize settings and open cart drawer, check if you have any settings to remove this message?

Hey @ThriftHunters

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. 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

1 Like

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

1 Like

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.