SebbC Posted January 10, 2013 Share Posted January 10, 2013 Bonjour, Je souhaite masquer l'image des catégories lorsque on se trouve dans une sous catégorie, mais pas pour une catégorie en particulier, Si je commente ces lignes dans category.tpl, l'image de catégorie ne s'affiche plus c'est ok, mais comment spécifier une condition pour conserver l'affichage de la catégorie dont l'ID est 12, par exemple ? <!-- Category image --> {if $category->id_image} <div id="entete_categorie"> <img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" width="{$categorySize.width}" height="{$categorySize.height}" /></div> J'ai tenté de modifier comme ceci : {if $category == '12' AND $category->id_image} Mais ça ne fonctionne pas. Merci de m'aiguiller, Seb Version Prestashop: 1.4.8.2 Link to comment Share on other sites More sharing options...
NikosKos Posted January 21, 2013 Share Posted January 21, 2013 Il faut faire : {if $category->id == 12 etc.... Tu as oublié le ->id 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