New Shopify Certification now available: Liquid Storefronts for Theme Developers

Remove price discount

Solved
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
Explorer
147 16 17

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
4193 964 1173

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
Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


View solution in original post

Replies 3 (3)
syedsumaimaly
Explorer
147 16 17

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
4193 964 1173

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
Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


JADIS
Explorer
169 1 19

thank you !!