canel Posted January 11, 2012 Share Posted January 11, 2012 Bonjour tout le monde, Je cherche à faire un truc tout bête (je pense) mais n'étant pas développeur je bute... Je cherche simplement à dire dans mon fichier category.tpl la condition : si on est dans tel ou tel catégorie on affiche cette image, sinon on affiche celle-ci J'ai trouvé la condition : {if $category->id == '11'} mais je souhaiterais ne pas mettre qu'une seule id, j'ai essayé en dupliquant la condition mais ça m'ajoute a chaque fois la photo du else.... Peut-on mettre plusieurs id à la suite des autres ? Et si oui comment l'écrire ? J'espère être clair.... Merci Link to comment Share on other sites More sharing options...
Samantha66 Posted January 11, 2012 Share Posted January 11, 2012 Bonjour, Tu peux essayer de faire : {if $category->id == 11 || $category->id == 12 || $category->id == 13} //ton image {else} // l'autre image {/if} 1 Link to comment Share on other sites More sharing options...
canel Posted January 11, 2012 Author Share Posted January 11, 2012 Impec merci beaucoup Samantha66 ! 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