Jump to content

Modification taille image dans product-tpl


Recommended Posts

Bonjour,

 

dans la BO j'ai créé une nouvelle taille d'image.

 

j'aimerai maintenant intégré cette nouvelle taille dans product-tpl à la place de la taille d'origine qui est "large"

 

je ne vois pas à quel endroit changer le nom

 

merci d'avance de votre aide.

Link to comment
Share on other sites

Bonjour,

 

Je ne sais pas quelle version de Prestashop tu utilises mais je te donne un exemple pour la version Prestashop 1.3 :

 

Dans le fichier product.tpl, remplace :

 

<img src="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'large')}" {if $jqZoomEnabled}class="jqzoom" alt="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'thickbox')}"{else} title="{$product->name|escape:'htmlall':'UTF-8'}" alt="{$product->name|escape:'htmlall':'UTF-8'}" {/if} id="bigpic"/>

 

Par :

 

<img src="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'nom-de-ton-format-d'image')}" {if $jqZoomEnabled}class="jqzoom" alt="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'thickbox')}"{else} title="{$product->name|escape:'htmlall':'UTF-8'}" alt="{$product->name|escape:'htmlall':'UTF-8'}" {/if} id="bigpic"/>

 

Il faut remplacer 'large' par le nom du nouveau format d'image que tu as crée.

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