dawa212 Posted July 13, 2013 Share Posted July 13, 2013 Bonsoir. Peut on ajouter des conditions dans les fichiers tpl et si oui comment ? J'ai vite essayé ceci sans réaction. {if isset($id_cms)}<p>{l s='blablablaba'} </p>{/if} J'aimerais changer le header une fois l'index passé. Je pensais qu'il suffisait de mettre une condition sur l’absence ou non de variables dans l'url. Merci Link to comment Share on other sites More sharing options...
Stéphane Chonez Posted July 15, 2013 Share Posted July 15, 2013 Bonjour, plutôt tester si on est sur la page d'index ou non ! {if $page_name != 'index'}blalbla{/if} a+ Link to comment Share on other sites More sharing options...
Bondaty and Co Posted July 15, 2013 Share Posted July 15, 2013 Voici un exemple de condition pour afficher un texte dans le header suivant un cms identifié si c'est cela que vous recherchez. Ca pourrait vous servir de base de travail. {if $page_name == 'cms' && $cms->id == '3'}<p>{l s='blablablaba'}</p>{/if} Link to comment Share on other sites More sharing options...
J. Danse Posted July 15, 2013 Share Posted July 15, 2013 Normalement, l'objet CMS (passé dans la variable $cms) ne sera pas accessible dans le header puisqu'il n'a pas encore été traité/assigné. La variable $page_name, quant à elle, l'est belle et bien. 1 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