kiwoo Posted July 5, 2008 Share Posted July 5, 2008 Bonjour,J'ai conçu un graphisme avec un bandeau spécial "page d'accueil" que j'ai placé dans le fichier header.tpl de mon thème et je souhaiterais que ce bandeau soit visible uniqauement dans l'index du site. Les autres pages utilisant un autre bandeau.Avez-vous une solution ou des astuces pour résoudre mon petit problème ?Merci Link to comment Share on other sites More sharing options...
Julien Breux Posted July 5, 2008 Share Posted July 5, 2008 Bonjour !Vous devez rajouter une condition de cette forme : {if $page_name eq 'index'} Bannière de la page d'accueil {/if} Et si vous tenez à faire la différence avec les autres pages, faites comme ceci : {if $page_name eq 'index'} Bannière de la page d'accueil {else} Bannière des autres pages {/if} Tenez-moi au courant Link to comment Share on other sites More sharing options...
Julien Breux Posted July 5, 2008 Share Posted July 5, 2008 Oupss.....Je rajouterai ceci (le code complet) Fichier: /themes/prestashop/header.tplLigne: 36 <!-- Header --> {if $page_name eq 'index'} {$HOOK_TOP} {else} {$HOOK_TOP} {/if} Link to comment Share on other sites More sharing options...
kiwoo Posted July 10, 2008 Author Share Posted July 10, 2008 Merci, ça fonctionne nikel :-) Link to comment Share on other sites More sharing options...
Julien Breux Posted July 10, 2008 Share Posted July 10, 2008 Avec plaisir 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