@samantham So I’m assuming it’s a vintage theme, not OS 2.0, right? Are you using a free theme from Shopify? What’s it called? I can take a look at the original codes and tell you where it is.
Also, if you post your URL here I might be able to tell you what to search for in your codes.
Topic summary
A Shopify store owner needs to hide prices on specific products that require custom quotes based on weight, shipping, and distance. They’re seeking a no-cost solution that works with their paid Responsive theme.
Suggested Solutions:
- Apps: Multiple “hide price” apps exist in the Shopify App Store, though most aren’t free
- OS 2.0 Themes: Create a new product template and remove the price section through theme customization
- Code-based approaches:
- Add CSS:
.price-box { display: none; }(limited effectiveness) - Edit
card-product.liquidto conditionally show prices based on product availability and price thresholds - Use product tags (e.g.,
hide-price) with Liquid conditionals to selectively hide prices - Target specific products by handle using conditional logic
- Add CSS:
Key Challenges:
- The Responsive theme’s code structure made it difficult to locate price-related code
- Some solutions only hide prices on product pages, not collection/cart/checkout pages
- Price-based conditional code can inadvertently hide prices on sold-out items
Current Status: The discussion remains open with multiple code snippets shared but no confirmed resolution for the original poster’s specific theme.
1 Like