Created
October 30, 2014 23:00
-
-
Save rdallaire/b58c7abfc30a8f32f990 to your computer and use it in GitHub Desktop.
products
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% comment %} This replaces product.sell_price with the top variants price {% endcomment %} | |
{% for variant in product.variants %} | |
{% if forloop.first %} | |
{% assign productTopPrice = variant.sell_price %} | |
{% if product.msrp_to_f > variant.sell_price_to_f %} | |
{% assign productMsrp = true %} | |
{% endif %} | |
{% endif %} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment