Cream77 Posted December 2, 2013 Share Posted December 2, 2013 je voulais savoir si {l s='Available'} peux être remplacé par une image ? {if ($product.allow_oosp OR $product.quantity > 0)}{l s='Available'}{else}{l s='sur commande'}{/if}</span> Link to comment Share on other sites More sharing options...
Bondaty and Co Posted December 2, 2013 Share Posted December 2, 2013 (edited) Vous pouvez en mettant: <img src="{$img_dir}votre-image.jpg" title="{l s='votre texte en anglais'}" alt="{l s='votre texte en anglais'}"/> En mettant l'image dans le dossier img de votre thème et ensuite en traduisant les textes en BO Edited December 2, 2013 by Muche (see edit history) Link to comment Share on other sites More sharing options...
Cream77 Posted December 2, 2013 Author Share Posted December 2, 2013 merci 1 Link to comment Share on other sites More sharing options...
Cream77 Posted December 2, 2013 Author Share Posted December 2, 2013 J'aurais bien une condition de type {if ($product.allow_oosp OR $product.quantity > 0)}<img src="image verte" alt ="{l s='available'}" title="en stock" />{else} {if ($product.allow_oosp OR $product.quantity == 0)} <img src="image jaune" alt ="{l s='sur commande}" title="sur commande" />{/if}</span> ca prend pas j'ai du faire une erreur Link to comment Share on other sites More sharing options...
Bondaty and Co Posted December 2, 2013 Share Posted December 2, 2013 (edited) J'aurais bien une condition de type {if ($product.allow_oosp OR $product.quantity > 0)}<img src="image verte" alt ="{l s='available'}" title="en stock" />{else} {if ($product.allow_oosp OR $product.quantity == 0)} <img src="image jaune" alt ="{l s='sur commande}" title="sur commande" />{/if}</span> ca prend pas j'ai du faire une erreur Je pense que vous n'avez bien lu ma réponse votre syntaxe src n'est pas bonne: src="{$img_dir}votre-image.jpg" remplacez votre-image par le nom de votre image puis l'extension .jpg .png ou .gif dans le nom des images, évitez les espaces (à remplacer par - ou _) et les accents celà pourrait donner: {if ($product.allow_oosp OR $product.quantity > 0)}<img src="{$img_dir}votre-image-en-stock.jpg" title="{l s='votre texte en anglais'}" alt="{l s='votre texte en anglais'}"/>{else}<img src="{$img_dir}votre-image-sur-commande.jpg" title="{l s='votre texte en anglais'}" alt="{l s='votre texte en anglais'}"/>{/if} Edited December 2, 2013 by Muche (see edit history) Link to comment Share on other sites More sharing options...
Cream77 Posted December 2, 2013 Author Share Posted December 2, 2013 je vous rassure j'avais bien mis le bon lien pour l'image. je voudrais rajouter une condition. si le stock = 0 alors il met l'image jaune c'est surtout ma condition qui marche pas : {if ($product.allow_oosp OR $product.quantity > 0)} <img src="{$img_dir}vert.png" alt ="{l s='available'}" title="en stock" />{else}<img src="{$img_dir}jaune.png" alt ="{l s='Out of stock'}" title="sur commande" />{/if}</span> Link to comment Share on other sites More sharing options...
Bondaty and Co Posted December 2, 2013 Share Posted December 2, 2013 dans le product.tpl, c'est: {if $product->allow_oosp OR $product->quantity > 0} Link to comment Share on other sites More sharing options...
Cream77 Posted December 2, 2013 Author Share Posted December 2, 2013 ca prend pas dans product-list et puis la c'est superieur a 0 mais la condition égale à 0 {if $product->allow_oosp OR $product->quantity = 0} ? Link to comment Share on other sites More sharing options...
Bondaty and Co Posted December 2, 2013 Share Posted December 2, 2013 dans le product list il faut un . à la place de ->, mettez juste: {if $product.quantity > 0} Link to comment Share on other sites More sharing options...
Cream77 Posted December 2, 2013 Author Share Posted December 2, 2013 parfait 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