laurens Posted February 24, 2013 Share Posted February 24, 2013 (edited) Bonjour, j'ai ces 2 bouts de code dans product_list le 1er me donne le lien vers les produits du fabricant le 2éme affiche le logo du fabricant je voudrait que le logo fasse le lien directement mais j'ai toujours une erreur quelqu'un peut m'aider Merci <a href="{$link->getPageLink('manufacturer.php')}?id_manufacturer={$product.id_manufacturer}" title="{$product.manufacturer_name}">{$product.manufacturer_name}</a> <!-- Manufacturer--> {if $product.id_manufacturer} <img src="{$img_manu_dir}{$product.id_manufacturer}-small.jpg" alt="{$product.manufacturer_name}" class="img_manuf"/> {/if} Edited February 26, 2013 by laurens (see edit history) Link to comment Share on other sites More sharing options...
Atch Posted February 25, 2013 Share Posted February 25, 2013 Bonjour, Si le code ci-dessus fonctionne séparé, essayez cela : {if $product.id_manufacturer} <a href="{$link->getPageLink('manufacturer.php')}?id_manufacturer={$product.id_manufacturer}" title="{$product.manufacturer_name}"><img src="{$img_manu_dir}{$product.id_manufacturer}-small.jpg" alt="{$product.manufacturer_name}" class="img_manuf"/></a> {/if} V++ Atch Link to comment Share on other sites More sharing options...
laurens Posted February 25, 2013 Author Share Posted February 25, 2013 (edited) Merci Atch je teste des ce soir résolu encore merci Edited February 25, 2013 by laurens (see edit history) Link to comment Share on other sites More sharing options...
laurens Posted February 26, 2013 Author Share Posted February 26, 2013 (edited) Bonjour, Je revient vers vous car le bout de code fourni par Atch fonctionne à part un détail Je m'explique , j'ai mis en override un bout de code trouver sur le forum pour faire un rollover des images en page catégories et qui fonctionne très bien. Quand je désactive le rollover ça fonctionne très bien mais dés que je remet le rollover le lien fonctionne et ouvre la page de la marque choisi mais aucune image n'apparait, j'ai fait un test aussi avec le module trproductmanufacturer est même problème Je vois pas ou ce trouve le souci puisque les images existe, c'est un truc de fou Je travaille en local ps 1.4.7.3 Edited February 26, 2013 by laurens (see edit history) Link to comment Share on other sites More sharing options...
laurens Posted February 28, 2013 Author Share Posted February 28, 2013 Bonsoir, personne pour m'aider Link to comment Share on other sites More sharing options...
laurens Posted March 2, 2013 Author Share Posted March 2, 2013 Bonjour, j'ai toujours pas trouvé , une aide svp Merci Link to comment Share on other sites More sharing options...
Atch Posted March 2, 2013 Share Posted March 2, 2013 un lien peut être, car sans bille difficile d'argumenter une solution V++ Atch Link to comment Share on other sites More sharing options...
laurens Posted March 2, 2013 Author Share Posted March 2, 2013 Le souci c'est que je travaille en local pour ne pas perturbé mon site car je ne connait pas rien en prog Link to comment Share on other sites More sharing options...
laurens Posted June 10, 2013 Author Share Posted June 10, 2013 (edited) Bonjour, Je revient vers vous car je n'ais toujours pas résolu mon problème (j'avais laissé tomber d'autres chose à traiter) Le theme est toujours en local , donc je vous joint des images et le bout de code qui me pose problème Les 2 premieres images montrent le produit avec et sans le passage de la souris, le rollover s'effectue bien, la 3eme montre la page du fabricant mais aucune image ne s'affiche et même pas le point d'interrogation voici le bout de code: {* --- hack to show additional images --- *} <a href="{$product.link|escape:'htmlall':'UTF-8'}" class="product_img_link" title="{$product.name|escape:'htmlall':'UTF-8'}"> {foreach from=$productimg key=key1 item=pimage} {foreach from=$pimage key=key2 item=pimage2} {if $product.id_product==$pimage2.id_product} <img id="img_{$product.id_product}" src="{$link->getImageLink($product.link_rewrite, $product.id_product|cat:"-"|cat:$pimage2.id_image, 'homcat')}" alt="{$product.legend|escape:'htmlall':'UTF-8'}" {if isset($homcatSize)} title="{$product.legend|escape:htmlall:'UTF-8'}" width="{$homcatSize.width}" height="{$homcatSize.height}"{/if} class="{$key2}" /> {/if} {/foreach} {/foreach} </a> {* --- /hack to show additional images --- *} Edited June 10, 2013 by laurens (see edit history) 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