Hello!
The code in question is this:
<ss:if test="$store.InventoryEnabled">
<ss:if test="$product.quantity == 0">This item is out of stock<ss:else/>Available Quantity: <ss:value source="$product.quantity"/></ss:if>
</ss:if>
The problem is that I would like any product that has 3 or more items in stock to just say "3 or more".
What does the code need to be?


