Is there a way to remove “Shopping calculated at checkout” from underneath the price of a custom product template? (Not all product pages.)
Hey Hbenik,
You’d want to make sure you have a ‘custom product page template’ created and assigned to the product that you’re working with.
https://help.shopify.com/en/manual/online-store/themes/theme-structure/templates
From there, you can use the “Custom CSS” option within the ‘customize theme’ settings, for the price block, to hide the text for “shipping calculated at checkout”.
The coding would look something like this:
.something {display: none;}
… where you’d replace “something” with the class label of that specific element.
If you can link me to the product page you’re working with, I can tell you want the class label is (it’s different depending on which theme you’re using). You can use Google Chrome’s “inspect” feature to find the class, if you’re familiar with reading coding.
Cheers,
Stephen
Hello @hbenik
Please provide your store URL, so I can review it and provide a solution.
Thanks for your response! The url using the product template in question is:
https://harrisville.com/products/22-floor-loom-4-harness-6-treadle
.product__policies {display: none;}
Thanks for sending this, but this text does not exist in the custom template for this page. Maybe it’s a part of the price? But I’m not sure where to find that component. I’m a bit of a novice if you haven’t noticed.
[[email removed]
Go into the theme editor > navigate to your product’s page > click into the “product page” settings block/section from the left hand menu > then on the right hand menu, at the bottom, there will be an expandable section for “Custom CSS”.
Add the the coding to this section:
.product__policies {display: none;}
Then save changes, and the text should be gone! ![]()
Yay! That did the trick. Thanks so much!
Great & thanks

