It is usually located near the bottom of the theme.liquid . file
Topic summary
Goal: hide product prices in the Sense theme’s product grid for a catalog-only site displaying “0.00”.
Proposed solutions:
- Edit theme.liquid and insert custom code before . Location of was clarified via screenshot, but the actual code snippet was missing in the post.
- Edit assets/base.css and add CSS targeting the price element. One suggestion used “.card-information .price { transform: none !important; }”, described as removing price, though it doesn’t actually hide it.
- Another approach: place CSS in base.css to hide the grid’s card information container (selector targeting ProductGridContainer and card-information) by setting display: none. This removes the price but likely hides other details too.
How-to path repeated: Online Store > Themes > Edit code > assets > base.css, add CSS at the bottom and save.
Open questions:
- Hide price only when the product price is zero (conditional display) – not answered.
- Also hide price in a Featured Collection section – not answered.
Status: partially addressed with CSS workarounds; best practice and conditional/section-specific solutions remain unresolved. Images help illustrate the target element and the location.
2 Likes
