matdollars Posted October 1, 2011 Share Posted October 1, 2011 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 More sharing options...
matdollars Posted October 1, 2011 Author Share Posted October 1, 2011 il y a pas une histoire : {if comme {if isset($images)} {foreach from=$images item=image name=thumbnails} {assign var=imageIds value="`$product->id`-`$image.id_image`"} <li id="thumbnail_{$image.id_image}"> Link to comment Share on other sites More sharing options...
matdollars Posted October 1, 2011 Author Share Posted October 1, 2011 En fait j’aimerai me servir que de la partie qui gère le open grpah tags de ce module http://www.ilet.com.br/blog/prestashop-modules/ Le reste du bouton j'aime ne me sert pas, donc il faudrait le modifier pour qui fasse que le open graph tags. Link to comment Share on other sites More sharing options...
matdollars Posted October 5, 2011 Author Share Posted October 5, 2011 personne pour m'aider ? Link to comment Share on other sites More sharing options...
ChristopheS Posted October 7, 2011 Share Posted October 7, 2011 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 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