How to show the discount % on products?
I use “forge” theme.
Hi,
You need to work on Liquid and CSS
Example of liquid will be used in product template
{% if product.compare_at_price > product.price %}
{% assign discount_percent = ((product.compare_at_price - product.price) / product.compare_at_price) * 100 | money_without_currency %}
Save {{ discount_percent }}%
{% endif %}
Note - First, decide how you want to calculate the discount percentage.
I want to be calculated automatically as I already created many automatic discounts.
where should I past this code?