How to show percentage saved with Dawn Theme?

I’m using Dawn Theme and I wish to show a percentage saved below the image as such

Like the same layout as the image, I’m aware there is code out there to do this for paid themes, however It would be great if someone could provide code for a snippet on dawn that would work

Many Thanks In Advance

Ps Info on how to change the colour to red would be amazing also.

1 Like

I’d like this code too please.

Hi @FinlayMg ,

please refer to the below code to implement the same.

{%- assign difference = card_product.compare_at_price | minus: card_product.price -%}
{%- assign float_difference = difference | times: 1.0 -%}
{%- assign discount_fraction = float_difference | divided_by: card_product.compare_at_price -%}
{%- assign discount_percentage = discount_fraction | times: 100 | round -%}
{{- discount_percentage }}

Please refer the below video to get more detail implementation.

Let me know if you have more questions.