Unable to Remove “Taxes Included” Text from Cart and Product Pages

I am trying to remove the “Taxes included, Shipping calculated at checkout” text from my store. I have attempted the following:

  1. Edited the default theme language in Online Store → Themes → Edit Languages, removing or leaving the relevant fields blank.

  2. Checked and modified Liquid files (cart-footer.liquid, main-cart-footer.liquid, cart-drawer-footer.liquid) in the code editor.

  3. Attempted to hide the text using CSS.

Despite these attempts, the text still appears on the cart page and product pages, and I am unable to remove it. It seems the text may be generated dynamically by JavaScript or other theme functionality.

I need guidance on how to completely remove this message without affecting the cart functionality.

Hey @jonbllaca06

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 </ body> tag
<style>
.caption {
    display: none !important;
}
</style>

RESULT:

If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

Not every store shows that message so I think you’re right on, it’s being generated by your theme or some other JavaScript (eg an app). You’re going to need to share your store public URL for anyone to troubleshoot this :slight_smile: eg example.com/cart. The public URL may or may not be enough depending on what is loading the text

Hi @jonbllaca06

  • Go to Settings → Taxes and duties.
  • If “All prices include tax” is enabled, Shopify automatically shows “Taxes included.”
  • If you want to hide that notice globally, disable “All prices include tax.”

Thank you, it worked for product page, the same text is also for cart page, any solution for there too?

Keep the previous code and add this new code above in the end of theme.liquid file.

.cart-drawer .tax-note {
    display: none !important;
}
.cart-drawer .totals {
    margin-bottom: 2rem !important;
}

RESULT:

If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.

Best,
Moeed