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

Solved

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

JADIS
Explorer
169 1 19

Good morning,

 

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

 

JADIS_2-1696343619950.png

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

Accepted Solutions (2)

syedsumaimaly
Trailblazer
147 16 22

This is an accepted solution.

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 </body> 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. 

View solution in original post

Made4uo-Ribe
Shopify Partner
10133 2403 3037

This is an accepted solution.

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;}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1696344246366.png
If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 3 (3)

syedsumaimaly
Trailblazer
147 16 22

This is an accepted solution.

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 </body> 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. 

Made4uo-Ribe
Shopify Partner
10133 2403 3037

This is an accepted solution.

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;}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1696344246366.png
If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
JADIS
Explorer
169 1 19

thank you !!