tomputer Posted February 12, 2016 Share Posted February 12, 2016 Hi there! I am looking for solution to customize header.tpl for homepage of prestashop. I mean i try to display different header.tpl on homepage and different on sites like products.tpl, category.tpl. Thank's for any suggestions! Link to comment Share on other sites More sharing options...
NemoPS Posted February 13, 2016 Share Posted February 13, 2016 You can edit layout.tpl{if !empty($display_header)}{include file="$tpl_dir./header.tpl" HOOK_HEADER=$HOOK_HEADER}{/if}Just add another condition like if $page_name == 'index' to show another template 1 Link to comment Share on other sites More sharing options...
tomputer Posted February 15, 2016 Author Share Posted February 15, 2016 Thank's It works Link to comment Share on other sites More sharing options...
irinuta14 Posted July 6, 2016 Share Posted July 6, 2016 Hi, I haven't gotten the hand of smarty yet, can you please post the whole code lines here? THANK YOU! Link to comment Share on other sites More sharing options...
vekia Posted July 9, 2016 Share Posted July 9, 2016 Hi, I haven't gotten the hand of smarty yet, can you please post the whole code lines here? THANK YOU! there is a line: {if !empty($display_header)}{include file="$tpl_dir./header.tpl" HOOK_HEADER=$HOOK_HEADER}{/if} change it to: {if $page_name=='index'} {if !empty($display_header)}{include file="$tpl_dir./header.tpl" HOOK_HEADER=$HOOK_HEADER}{/if} {else} {if !empty($display_header)}{include file="$tpl_dir./MY-FILE-WITH-HEADER.tpl" HOOK_HEADER=$HOOK_HEADER}{/if} {/if} Link to comment Share on other sites More sharing options...
Kreamitu Posted August 21, 2019 Share Posted August 21, 2019 Goodmorning If I want to have more then one page? Like index, product, category? It’s possible? What’s the right code to do it? Many thanks for your answer... 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