{% for item in cart.items %}
{{ item.original_price }}
{{ item.final_price }}
{% endfor %}
Both these values will give me the sale price only. I would like to showcase the original price of the item if it is on sale.
Thanks in advance.
{% for item in cart.items %}
{{ item.original_price }}
{{ item.final_price }}
{% endfor %}
Both these values will give me the sale price only. I would like to showcase the original price of the item if it is on sale.
Thanks in advance.
I think what you’re looking for is:
{{ item.variant.compare_at_price | money }}