Jump to content

Image a la place du stock


Cream77

Recommended Posts

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

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 by Muche (see edit history)
Link to comment
Share on other sites

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

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...