I am having an issue having my collection pages display the proper “compare to” price for a given variant. Code is below. Using Retina theme. Can someone tell me what to adjust? It is showing the lowest price variant correctly, but I also want it to show the lowest price “compare to” as well. The individual product pages do it correct.
https://shop.windchillultimate.com/collections/tickets
{% if variant.available == false %}{{ 'products.product.sold_out' | t }}{% endif %} {% if variant.price > 0 %} {{ variant.price | money }} {% else %} {{ settings.free_price_text }} {% endif %} {% if variant.price < variant.compare_at_price and variant.available %} {{ variant.compare_at_price | money }} {% endif %}
{% endunless %} {% include 'size-chart-popup' %}