{% if settings.show_units_in_stock %}
{% if product_item.any_available %}
{% if product_item.stock > 0 %}
<p class="units-in-stock">Sólo {{ product_item.stock }} disponibles</p>
{% else %}
<p class="units-in-stock">Disponible para pre-venta</p>
{% endif %}
{% else %}
<p class="units-in-stock">Fuera de stock</p>
{% endif %}
{% 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.