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

KimGottwald
Explorer
103 0 14

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
5611 1030 1058

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 and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

KimGottwald
Explorer
103 0 14

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

Dan-From-Ryviu
Shopify Partner
5611 1030 1058

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 and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

KimGottwald
Explorer
103 0 14

Please help.

Dan-From-Ryviu
Shopify Partner
5611 1030 1058

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 and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now