Hello,
Prestashop has stock management wich allows to give the end users the information if a product is in stock or not
When you have a product with several sizes it show on the product page that a product is available with diffrent options when some sizes are sold out (wich is good)
But on the product list page it can also show if a product is sold out
The problem is that when a product has a few sizes sold out it shows "unavailible" on the product list page, but it must show something like limeted in stock but it doesnt?
the code from product list
{if ($product.allow_oosp || $product.quantity > 0)}<font color="#757575"> </font>{elseif (isset($product.quantity_all_versions) && $product.quantity_all_versions > 0)}<font color="#757575">{l s='Product available with different options'}</font>{else}<font color="#757575">{l s='Out of stock'}</font>{/if}
</font>
the website www.loavies.com (because its a production website i have diabled the code on the product list site.
Why doesnt it display {l s='Product available with different options'} when not everything is sold out? it just shows out of stock
How can i fix this?