Jump to content

Variable image fiche produit


Recommended Posts

Je suis sous prestashop 1.4.4.1

 

Je cherche la variable pour afficher l'image par defaut de la fiche produit pour l'intégrer dans mes open graph tags.

 

J'ai essayé :

 

{$link->getImageLink($product->link_rewrite, $cover.id_image, 'large')}

{$link->getImageLink($product.link_rewrite, $product.id_image, 'medium')}

{$absoluteBaseUrl}/img/p/{$id_product}-{$id_image}-large.jpg

 

rien ne fonctionne ça me donne http://localhost/boutiquedetest/img/p/-large.jpg" il me manque l'ID de la photo par exemple "http://localhost/boutiquedetest/img/p/18-123-large.jpg"

 

Merci.

Link to comment
Share on other sites

Peut-être avec ça dans ton TPL, il faut reprendre la variable de tes produits !

 

On appelle l'image avec getImageLink, voici un exemple :

 

<a href="{$special.link}"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'medium')}" alt="{$product.legend|escape:htmlall:'UTF-8'}" height="{$mediumSize.height}" width="{$mediumSize.width}" title="{$product.name|escape:htmlall:'UTF-8'}" /></a>

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