d0ud3 Posted December 5, 2012 Share Posted December 5, 2012 Bonjour, j'ai modifier le fichier /themes/THETHEME/modules/homefeatured.tpl pour associer la taille des images à celle paramétrée dans le Back-Office J'ai donc changé la ligne suivante (l42) ET REGENERE les minatures : <a href="{$product.link}" title="{$product.name|escape:html:'UTF-8'}" class="product_image"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')}" height="{$home_defaultSize.height}" width="{$home_defaultSize.width}" alt="{$product.name|escape:html:'UTF-8'}" /> par la ligne suivante <a href="{$product.link}" title="{$product.name|escape:html:'UTF-8'}" class="product_image"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'phares')}" height="{$pharesSize.height}" width="{$pharesSize.width}" alt="{$product.name|escape:html:'UTF-8'}" /> Mon problème est que sou Internet explorer, les produits ne s'affichent pas, tandis que sous Chrome, mozilla, safari, les produits s'affichent aux bonnes dimensions... Je ne vois pas d'ou ca pourrais venir, sachant que AVANT que je mette en place mon thème, les images PAR DEFAUT s'affichaient bien sous IE, mais je n'avais pas effectué les modification sur le homefeatured.tpl... Je travail sur le site suivant : http://leschateauxenbouteilles.fr Cordialement Link to comment Share on other sites More sharing options...
Hedrad Posted December 5, 2012 Share Posted December 5, 2012 Bonjour, Dans le fichier php du module, vous devez assigner $pharesSize. 1 Link to comment Share on other sites More sharing options...
d0ud3 Posted December 6, 2012 Author Share Posted December 6, 2012 effectivement dans le fichier php je devais changer $this->smarty->assign(array( 'products' => $products, 'add_prod_display' => Configuration::get('PS_ATTRIBUTE_CATEGORY_DISPLAY'), 'homeSize' => Image::getSize('home_default'), )); par $this->smarty->assign(array( 'products' => $products, 'add_prod_display' => Configuration::get('PS_ATTRIBUTE_CATEGORY_DISPLAY'), 'homeSize' => Image::getSize('phares'), )); Et remettre sur le .tpl ligne 42 <a href="{$product.link}" title="{$product.name|escape:html:'UTF-8'}" class="product_image"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'phares')}" height="{$homeSize.height}" width="{$homeSize.width}" alt="{$product.name|escape:html:'UTF-8'}" /> Merci Link to comment Share on other sites More sharing options...
Hedrad Posted December 6, 2012 Share Posted December 6, 2012 Pensez à éditer votre 1er post pour ajouter [RESOLU] dans le titre. 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