Jump to content

Add product tab above more info


Recommended Posts

Prestashop 1.6.0.8 - it's the default bootstrap.

 

I want to add a single customized product tab above more info. Actually I've tried editing the product.tpl.

 

But if I have multiple tabs ,it transfers above the more info tab.

Link to comment
Share on other sites

Let's clarify

 

prestashop to create tabs uses hooks:

- productTab

- productTabContents

 

to create tabs, you will have to move code with these hooks above the "more info"

<div id="more_info_block" class="clear">
<ul id="more_info_tabs" class="idTabs idTabsShort clearfix">
{$HOOK_PRODUCT_TAB}
</ul>
</div>
<div id="more_info_sheets" class="sheets align_justify">
{$HOOK_PRODUCT_TAB_CONTENT}
</div>
Link to comment
Share on other sites

×
×
  • Create New...