guilli Posted July 19, 2011 Share Posted July 19, 2011 Bonjour,Je voudrais faire un if en smarty : {if $page_name != 'product' or $page_name != 'order'} {$HOOK_LEFT_COLUMN} {/if} Mais visiblement la double condition n'est pas interprétée et le if ne marche pas. J'ai fais une erreur de syntaxe ?merci Link to comment Share on other sites More sharing options...
Vincent Decaux Posted July 19, 2011 Share Posted July 19, 2011 Tu as essayé : {if $page_name != 'product' && $page_name != 'order'} {$HOOK_LEFT_COLUMN} {/if} (je pense que c'est plutôt un "ET" qu'il faut mettre dans ta condition) Link to comment Share on other sites More sharing options...
guilli Posted July 19, 2011 Author Share Posted July 19, 2011 Un ou tu veux dire je pense: ||En tous cas, le résultat est le même. Ca bug. Link to comment Share on other sites More sharing options...
Vincent Decaux Posted July 19, 2011 Share Posted July 19, 2011 Non, si tu ne veux pas afficher la colonne de gauche sur les pages produits et order, c'est bien un "ET" (&&)...As-tu testé le "ET" ? Ce qui prendrait environ 2 secondes. Link to comment Share on other sites More sharing options...
guilli Posted July 19, 2011 Author Share Posted July 19, 2011 J'ai mis un && mais cela ne marche pas. Link to comment Share on other sites More sharing options...
Vincent Decaux Posted July 19, 2011 Share Posted July 19, 2011 Quelle est l'erreur ? Une page blanche ? La colonne est toujours présente ?As-tu vidé le cache Smarty si tu changes les templates ? 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