New Shopify Certification now available: Liquid Storefronts for Theme Developers

Remove discount price only for collection

Solved
JADIS
Explorer
169 1 19

Good morning,

 

I would like the base prices (those crossed out) not to be displayed only on the featured collections please

sdqdqsdq.PNG

Do you know how to do it please?

 

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

Accepted Solution (1)
Moeed
Shopify Partner
3051 761 925

This is an accepted solution.

Hey @JADIS 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

{% if template == 'index' %}
<style>
.price--on-sale .price-item--regular {
    display: none;
}
</style>
{% endif %}

RESULT:

Moeed_0-1696253374922.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

Need a Shopify developer? Chat on WhatsApp


- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

View solution in original post

Replies 2 (2)
Moeed
Shopify Partner
3051 761 925

This is an accepted solution.

Hey @JADIS 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

{% if template == 'index' %}
<style>
.price--on-sale .price-item--regular {
    display: none;
}
</style>
{% endif %}

RESULT:

Moeed_0-1696253374922.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

Need a Shopify developer? Chat on WhatsApp


- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
JADIS
Explorer
169 1 19

bro it works but i have one more question please, is it possible to remove the discount price also in product grid please like show in this screenshot :

JADIS_0-1696340851313.png