adenizi Posted May 24, 2015 Share Posted May 24, 2015 (edited) Hi! how can i remove the header and the footer from specific pages, in my case the checkout and sign up pages? I tried to add this in footer.tpl but didnt work {if $page_name != 'order'} <!-- Header --> <div id="header" class="header-container"> </div> {/if} thanks Edited May 24, 2015 by adenizi (see edit history) 1 Link to comment Share on other sites More sharing options...
jgamio Posted May 24, 2015 Share Posted May 24, 2015 First you try to hide the header on the footer.tpl the header is already show it You can do it in many ways, the easy way for me is with css Checkout each page have a id for example order has id="order" just add to the css #order .header-container { display:none; } 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