Hey,
Is it possible to make the save 25% visible on Dawn 2 theme?
Thanks in advance
Scott
Hey,
Is it possible to make the save 25% visible on Dawn 2 theme?
Thanks in advance
Scott
This is the code we’ll be using to calculate the percentage discount:
{% capture discount %}
{{ product.compare_at_price_max | minus:product.price | times:100 | divided_by:product.compare_at_price_max }}%
{% endcapture %}
And here’s the liquid code we’re using to display the discount (you’ll want to add your own markup here).
{{ discount }}
try out this code.
{% capture discount %}
{{ product.compare_at_price_max | minus:product.price | times:100 | divided_by:product.compare_at_price_max }}%
{% endcapture %}
Sorry I’m confused.
Which code goes where?
thanks