Hello
I am looking to try and show the actual % reduction for each product on my site i.e. 50% Off or You Save 50% something like this. I know it is possible with such code. Could you help me ?
my website is : jadis-shop.com
i am using dawn theme
![]()
Hello
I am looking to try and show the actual % reduction for each product on my site i.e. 50% Off or You Save 50% something like this. I know it is possible with such code. Could you help me ?
my website is : jadis-shop.com
i am using dawn theme
![]()
hi @JADIS
Glad to support you today.
Yeah its possible to show a percentage discount on products with the code
Try the following code to show the % .
{%- assign percent = card_product.compare_at_price | minus: card_product.price | times:
100 | divided_by: card_product.compare_at_price | round -%}
-{{ percent }}%
This code for the Collection page and Featured collection
hello again, where do i have to put this code ? i am a beginner sorry ![]()
which theme you are using?
and where you want to show this badge.
open theme editor > snippets > price.liquid
paste the following code in price.liquid
{%- assign percent = product.compare_at_price | minus: product.price | times: 100 | divided_by: product.compare_at_price | round -%}
{{ percent }}% Off
that’s it
perfect !!! thanks a lot ![]()