{% if product.stock > 5 %}
<p class="units-in-stock">En stock</p>
{% elsif product.stock > 0 %}
<p class="units-in-stock low-stock">Sólo {{ product.stock }} disponibles</p>
{% elsif product.has_unlimited_stock %}
<p class="units-in-stock pre-sale">Disponible para pre-venta</p>
{% else %}
<p class="units-in-stock no-stock">Agotado</p>
{% endif %}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.