Can anyone help please? In my product descriptions (Venture theme) under the price it says “Free Standard Shipping” I don’t offer this on all products and need it removed or changed? Thanks
Topic summary
A Shopify store owner using the Venture theme needs to remove or modify the “Free Standard Shipping” text appearing under product prices, as this offer doesn’t apply to all products.
Proposed Solutions:
- Multiple community members suggested adding CSS code to hide the shipping policy text
- Recommended locations: bottom of
theme.scss.cssfile or intheme.liquidbefore the</body>tag - Specific CSS provided:
.product-single__policies { display: none; }
Outcome:
- Initial CSS solutions didn’t resolve the issue
- The store owner eventually figured out the solution independently and thanked the community for their assistance
Note: The conversation text appears corrupted or reversed in the original posts, but the core troubleshooting flow remains clear.
Hi,
Welcome to shopify community.
Please share your store URL and if your store is password protected then also provide password too.
Thank you.
Hi,
thanks it’s https://www.dirtbaggold.com/ and password is Bignugget1
Please add below css code in bottom of theme.scss.css file
.product-single__policies {
display: none;
}
Thank you
Hey @Dirtbag
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above tag
Hi @Dirtbag
You can try this code by following these steps:
Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag
Hope this answer helps.
Best regards,
Victor | PageFly
I have tried the above and it’s still visible. Thank you all for helping
Hi I worked it out this morning, thanks for your help


