How to hideprices in Collection pages in Symmetry?

Topic summary

A user needed to hide product prices on collection pages in the Symmetry Shopify theme, having already hidden them on product pages but finding no built-in option for collections.

Solution provided:

  • Add custom CSS code to the main.css file
  • The code snippet hides both collection page prices and the cart icon from the header:
.product-price--block, .cart-link{
  display: none;
}

Outcome:
The CSS solution was successfully implemented and resolved the issue. The discussion is now closed with the problem solved.

Summarized with AI on October 29. AI used: claude-sonnet-4-5-20250929.

Hi, I need advice on how to hide the prices in Collection pages in Symmetry. I have hidden the prices on the product pages, but there is no option to do this on the collection pages. Please advise! Thank you

In that case you can hide it with a bit of css. Share the store url and I can update the code with you.

1 Like

https://056a67-c8.myshopify.com/

Hey,

In your main.css file add this at the very bottom

.product-price–block, .cart-link{

display: none;

}

Try this and this should hide the prices and the cart icon from the header.

1 Like

Bravo!! You are a genius! It worked! Thank you! :slightly_smiling_face: