gotcha Posted November 9, 2014 Share Posted November 9, 2014 I want to remove whmcs header (exclude it) on specified pages. How to do this? 0 Quote Link to comment Share on other sites More sharing options...
sentq Posted November 10, 2014 Share Posted November 10, 2014 if you really need to do this you can surround header.tpl code with if statement to be disabled for specific pages, here's an example: we will disable header.tpl content from being displayed in noheaderpage.php: {if ($filename!='noheaderpage')} <!DOCTYPE html> <html> <head> .... </head> <body> .... {/if} also you may need to apply the same for footer.tpl 0 Quote Link to comment Share on other sites More sharing options...
gotcha Posted November 10, 2014 Author Share Posted November 10, 2014 Thank you very much! 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.