MT Studio Posted November 3, 2017 Share Posted November 3, 2017 Bonjour, Je suis entrain de développer une boutique en ligne et j'aimerais apporter des modifications sur la fiche produit. J’aimerais, dans un premier temps, afficher et mettre en lien les catégorie appartenant au produit. Dans un deuxième temps, j'aimerais afficher les images de ces catégories. J'ai déjà fait quelques test sur la feuille product.tpl en insérant : <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" ><img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image)|escape:'html':'UTF-8'}" alt="{$category->name|escape:'html':'UTF-8'}"/> </a> Ceci me permet d'afficher l'image et le lien vers la catégorie par défaut. Or j'aimerais afficher également les autres catégories associé au produit. Merci d'avance de votre aide ! Link to comment Share on other sites More sharing options...
MT Studio Posted November 3, 2017 Author Share Posted November 3, 2017 J'ai réussi à afficher toutes les catégories associé grâce au code : <ul class="productcats"> {foreach from=Product::getProductCategoriesFull(Tools::getValue('id_product')) item=cat} {if $cat.id_category!=2} <li><a href="{$link->getCategoryLink({$cat.id_category})}" title="{$cat.name}">{$cat.name}</a></li> {/if} {/foreach} </ul> Maintenant je cherche comment afficher les images associées à ces catégories... Je suis preneuse si quelqu'un à la solution Link to comment Share on other sites More sharing options...
doekia Posted November 4, 2017 Share Posted November 4, 2017 <img src="{$smarty.const.__PS_BASE_URI__}img/c/{$cat.id_category}.jpg" /> Link to comment Share on other sites More sharing options...
MT Studio Posted November 6, 2017 Author Share Posted November 6, 2017 Merci beaucoup, c'est exactement ce que je voulais Une dernière petite chose : comment je peux afficher une seule catégorie si celle-ci est associé à mon produit ? Link to comment Share on other sites More sharing options...
syl2042 Posted February 22, 2018 Share Posted February 22, 2018 Bonjour, Je me permets de déterrer ce post. Mon souci est relativement simple et très proche du votre. Je souhaite afficher sur la fiche produit le lien dela catégorie, et l'image en lien également. Je mets ce code : <A href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" ><IMG src="{$link->getCatImageLink($category->link_rewrite, $category->id_image)|escape:'html':'UTF-8'}" alt="{$category->name|escape:'html':'UTF-8'}"/> </A> J'ai l'image cliquable, mais pas le lien texte. Je tourne en rond. Merci d'avance. 1 Link to comment Share on other sites More sharing options...
Passion-Ecommerce Posted October 23, 2018 Share Posted October 23, 2018 Bonjour, Merci beaucoup pour ce code, qui marche vraiment. Cependant, dans votre code, vous affichez toutes les catégories, même celle qui sont cachées. Avez-vous une solution pour ne pas les afficher ? Merci d'avance Serge 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