Impulse Theme: How to hide prices on entire store

Topic summary

A user needed to hide product prices across their entire Shopify store using the Impulse theme.

Solution Found:
The issue was resolved by the original poster through a CSS modification:

  • Navigate to the Assets folder
  • Open the theme.css.liquid file
  • Add custom CSS code at the bottom to hide price elements
  • The code targets grid product price and metadata wrappers with display: none

This is a straightforward customization that removes price visibility on collection and product pages without requiring theme structure changes. The discussion is resolved with a working solution provided.

Summarized with AI on November 14. AI used: claude-sonnet-4-5-20250929.

Hello! can someone help me remove all the prices under the products on my store. thank you !!! the theme that i am using is impulse and my web address is www.onlybeyu.com

I solved it. Go to assets folder and add this code at the bottom of theme.css.liquid file

.collection-grid__wrapper .grid-product__meta .grid-product__price {
    display: none;