Remove tax included. shipping calculated at checkout

Topic summary

Users are trying to remove the “tax included, shipping calculated at checkout” message from their Shopify store product pages, but previously working CSS solutions have stopped functioning.

Proposed Solutions:

  • Add CSS code to hide the message using .product__policies or .cart__shipping selectors with display: none
  • Edit language settings via Online Store → Themes → Actions → Edit Languages → Cart tab to delete or replace the text
  • Reference community threads with Dawn theme-specific solutions

Current Status:
The issue remains unresolved for some users. One participant reports that editing language settings works, while CSS modifications fail. Another notes that theme.scss file doesn’t exist in their setup, indicating solutions may be theme-dependent. The discussion lacks a universal fix, with effectiveness varying by theme version and store configuration.

Summarized with AI on November 11. AI used: claude-sonnet-4-5-20250929.

Hello,

I used the code below to remove the ‘tax included. shipping calculated’ message earlier but now its there again on all views. How can I remove from the add to cart page?

URL: dawgminded.com

password: audio

.product__policies.rte {
    display: none;
}

1 Like

hello @dawgminded

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.template-product .product__policies{
    display: none !important;
}
1 Like

@dawgminded

Please check following URL for help

https://community.shopify.com/c/Shopify-Design/Delete-Shipping-calculated-at-checkout/td-p/533355

To make sure that the “Shipping calculated at checkout” message applies to your store, you can place a test order on your page and see if the text is there. If it is, you’ll probably want to remove it. Here’s what you do:

  1. Go to your Shopify Admin page and select “Online Store>Themes”.
  2. Next to your theme name, select “Actions”.
  3. From the drop-down menu, select “Edit Languages”.
  4. You’ll see multiple options. Select the “Cart” tab.
  5. Scroll down, and you’ll see “Taxes and shipping at checkout,” and underneath the text, you want to remove.
  6. Delete the “Shipping calculated at checkout” text.
  7. Replace it with whatever text you want.
  8. Click “Save”.
1 Like

@dawgminded

.cart__shipping {
    display: none;
}

Add this in theme.scss

2 Likes

This doesn’t work. As you can see on my screenshot, I’ve replaced the text on the “Cart” tab, saved it, and the product page still shows the same text as before.

This is the only thing that works. Thanks.

theme.scss does not exist anymore what else can i do?

https://community.shopify.com/c/shopify-design/how-to-remove-shipping-calculated-at-checkout-for-dawn-theme/m-p/1970109/highlight/true#M524402 it is posted here