Re: How To Add Another "Red" Price To The Product Title When The Product Is On Sale?

How To Add Another "Red" Price To The Product Title When The Product Is On Sale?

KimGottwald
Trailblazer
235 0 34

Hello,

can someone tell me how to add this modification to the product when its on sale?

How it looks now:

KimGottwald_0-1698217704630.png

 

How it should look:

KimGottwald_1-1698217704642.png

 

 

Im using the Brooklyn theme: aliudclothing.com

Thank you!

 

Kim

Replies 5 (5)

Dan-From-Ryviu
Shopify Partner
11608 2275 2456

Hi @KimGottwald 

Go to your Online store > Themes > Edit code > open product-grid-item.liquid, find this line of code 

{{ product.price | money_without_trailing_zeros }}

Replace it with this code 

<span style="text-decoration: line-through;">
{{ product.compare_at_price | money_without_trailing_zeros }}
</span>
<span style="color: red;">
{{ product.price | money_without_trailing_zeros }}
</span>

Save your file  

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

KimGottwald
Trailblazer
235 0 34

Thank you, sadly also the normal prices are now red, how can I change that?

Dan-From-Ryviu
Shopify Partner
11608 2275 2456

Please update previous code to this 

{% if on_sale %}
  <span style="text-decoration: line-through;">
  {{ product.compare_at_price | money_without_trailing_zeros }}
  </span>
  <span style="color: red;">
  {{ product.price | money_without_trailing_zeros }}
  </span>
{% else %}
  {{ product.price | money_without_trailing_zeros }}
{% endif %}

 

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

KimGottwald
Trailblazer
235 0 34

Please help.

Dan-From-Ryviu
Shopify Partner
11608 2275 2456

Please update code like this 

            {% if on_sale %}
              <span style="text-decoration: line-through;">
              {{ product.compare_at_price | money_without_trailing_zeros }}
              </span>
              <span style="color: red;">
              {{ product.price | money_without_trailing_zeros }}
              </span>
            {% else %}
              {{ product.price | money_without_trailing_zeros }}
            {% endif %}

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.