I want to remove the “Shipping calculated at checkout.” text on my product pages because we will only be offering click and collect.
How can I remove this?
Website: phattai.au
Password: EPIQMedia
Users seek to remove the “Shipping calculated at checkout” text from product pages in Shopify’s Dawn theme, particularly when offering only click-and-collect or selling non-physical products.
Solutions by Dawn Version:
Older Dawn versions: Navigate to Online Store > Themes > Actions > Edit Languages > Products section, then clear the “Shipping policy html” textbox.
Dawn 6.02+: Access “Edit default theme content” (instead of Edit Languages), go to the Products tab, and modify the “Shipping policy html” field.
Code-level removal: Delete the liquid code line <p class="product__policies">{{ 'products.product.shipping_policy_html' | t }}</p> from main-product.liquid or product-template.liquid.
Open Question:
One user raised whether this text should automatically hide for non-physical products, as it currently displays regardless of product type. No solution was provided for selectively removing the text from specific product templates while keeping it on others.
I want to remove the “Shipping calculated at checkout.” text on my product pages because we will only be offering click and collect.
How can I remove this?
Website: phattai.au
Password: EPIQMedia
You can remove this text by editing your theme languages:
Hope this helps.
Thank you this worked.
Unfortunately, this doesn’t seem to appear in the current Dawn theme 6.02.
Locating the default text is challenging.
If you look at the liquid code, it appears if the text is blank it’s including an HTML file or something to display the text.
The only way to remove it is to edit the product page liquid code and remove the liquid code that injects the statement.
QUESTION: Why is this text appearing for products that aren’t physical products? Shouldn’t it be standard practice to only include this if the product is shippable??
I believe this is automatically included if you set a shipping policy text entry through “Settings”.
Look in your code for “main-product.liquid”.

On the latest releases of Dawn, you can still edit this text without touching the template code.
It is now located under 'Edit default theme content ’
Go to Products tab in there.
You’ll find a text field with the label ‘Shipping policy html’
Would it be possible to remove this line ONLY on a new product template (and not on the default product template) in Dawn?
Hi,
Hope this will help
Find the Right Code File (product-template.liquid or main-product.liquid)
Remove the Text
Shipping calculated at checkout
Delete that entire line
<p class="product__policies">{{ 'products.product.shipping_policy_html' | t }}</p>