Last active
March 13, 2020 18:54
-
-
Save aatronco/db9ce9dbcf2f0a2b4a2070ca2877ed6e to your computer and use it in GitHub Desktop.
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
<!-- Requires adaptation to the Theme --> | |
<div class="post-prev-text align-center"> | |
{% if product.discount > 0 %} | |
<strong>{% t "From" %} </strong>{{ product.price | minus:product.discount | price }} <del> {{ product.price | price }}</del> | |
{% else %} | |
{% assign variant_prices = product.variants | sort: 'price' | map: 'price' %} | |
{% if variant_prices.size > 1 %} | |
<strong>{{ variant_prices | first | price }} - {{ variant_prices | last | price }}</strong> | |
{%else%} | |
{{product.price | price}} | |
{%endif%} | |
{% endif %} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment