Jump to content

Cant move Theme configurator above Homepage Tabs on Home Page


Recommended Posts

Hello All

 

I want to move the theme configurator module above the featured products tab on the home page. For the life of me I cannot seem to do it. The displayHomeTab always defaults above the Homepage content.

 

Can anyone help? This is on Prestashop v1.6 Bootstrap theme.

 

Many Regards

 

Jimicus

Link to comment
Share on other sites

in this case it's necessary to modify the home hook.

open: index.tpl file and move:
 

{if isset($HOOK_HOME) && $HOOK_HOME|trim}
	<div class="clearfix">{$HOOK_HOME}</div>
{/if}

above the:

{if isset($HOOK_HOME_TAB_CONTENT) && $HOOK_HOME_TAB_CONTENT|trim}
    {if isset($HOOK_HOME_TAB) && $HOOK_HOME_TAB|trim}
        <ul id="home-page-tabs" class="nav nav-tabs clearfix">
			{$HOOK_HOME_TAB}
		</ul>
	{/if}
	<div class="tab-content">{$HOOK_HOME_TAB_CONTENT}</div>
{/if}
  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...