Jump to content

Solution pour masquer les produits a stocke zéro


Recommended Posts

Bonjour,

j'espere que ces quelques ligne vous seront utiles:

la meilleur solution que j'ai trouver est d'ajouter ça a chaque boucle produit:


{if $product.quantity > 0}
{/if}

l'ancien code est:

 

{foreach from=$new_products item='product' name='newProducts'}
..........
{/foreach}

devient:


{foreach from=$new_products item='product' name='newProducts'}
{if $product.quantity > 0}

................

{/if}
{/foreach}

enjoy  :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...