How can I hide base prices on the product grid in Dawn theme?

Good morning,

I would like the base prices not to be displayed only on the product grid please

so in this example : to see only 150 for the first product and 140 for the second

Do you know how to do it please?

Theme: Dawn
Website: jadis-shop.com
password:rj

1 Like

**Hi @JADIS **

Follow these Steps:

Go to Online Store Edit Code Find theme.liquid file or base.css

Add the following code in the bottom of the file above tag

s.price-item.price-item--regular {
    display: none;
}

If I managed to help you then, don’t forget to Like it and Mark it as Solutions.

Hi @JADIS

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
div#ProductGridContainer s.price-item.price-item--regular { display: none;}

thank you !!

1 Like