Hellfik Posted November 6, 2012 Share Posted November 6, 2012 Bonjour, J'ai, après quelques recherches, réussit à modifier 3 différentes disponibilités sur mon site, à savoir quand le stock atteint 0 (sur commande), entre 1 et 99 (en stock) et à partir de 100 (en précommande). Le problème c'est que quand le stock atteint minimum -1, ça met "en stock". Comment modifier ma ligne pour que ça reste "sur commande" ? Voici ma ligne de code du fichier product-list.tpl : {if $product.quantity >= 1 && $product.quantity <=99}{l s='Available'}{elseif $product.quantity >= 100}{l s='Pre order'}{elseif $product.quantity <= 0}{l s='Available soon'}{/if} Merci pour votre aide. Link to comment Share on other sites More sharing options...
Hedrad Posted November 6, 2012 Share Posted November 6, 2012 En mettant juste {else} au lieu de la dernière condition, ça donne quoi ? Link to comment Share on other sites More sharing options...
Hellfik Posted November 6, 2012 Author Share Posted November 6, 2012 En mettant juste {else} au lieu de la dernière condition, ça donne quoi ? Je viens de tester. Eh bien ça ne change rien :/ Link to comment Share on other sites More sharing options...
Hellfik Posted November 6, 2012 Author Share Posted November 6, 2012 et comme ça {if ($product.quantity > 0)}{l s='Available'}{elseif $product.quantity > 99}{l s='Pre order'}{else}{l s='Available soon'}{/if} Mmhh non toujours pas ... Link to comment Share on other sites More sharing options...
Hellfik Posted November 14, 2012 Author Share Posted November 14, 2012 Up ! Je ne sais toujours pas comment faire. Merci Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now