{% if Compare_at_price %}
{{ 'products.general.sale' | t }}
{% endif %}
i am apply this condition is it true?
please help me
{% if Compare_at_price %}
i am apply this condition is it true?
please help me
Hi @john031 ,
Incorrect, you should use this:
{% if product.compare_at_price > product.price %}
{{ ‘products.general.sale’ | t }}
{% endif %}