View Single Post
  #36  
Old 07-08-2010, 08:29 AM
 
joncampbell joncampbell is offline
 

Advanced Member
  
Join Date: Apr 2010
Location: Vancouver, BC
Posts: 60
 

Default Re: X-Cart 4.4 beta testing

In skin/common_files/customer/main/product tpl it checks if the tabs are on or off.

{if $product_tabs}
{if $show_as_tabs}
{include file="customer/main/ui_tabs.tpl" prefix="product-tabs-" mode="inline" tabs=$product_tabs}
{else}
{foreach from=$product_tabs item=tab key=ind}
{include file=$tab.tpl}
{/foreach}
{/if}
{/if}


That code will then load the tab contents into tabs or not into tabs using those two .tpls
Reply With Quote