Hi Vetrivel,
I double checked my code, but nothing is obvious to me. Other than in the Tabs area (code posted below), what should I look for in product.tpl that would resolve this? ...see attached image
{* TABS MENU START (v4.1.x) *}
<a name="tabs" id="tabs"></a>
<ul id="maintab" class="shadetabs">
<li class="selected"><a href="#tabs" rel="tcontent1">Features</a></li>
{if $product.fulldescr ne ""}{$product.fulldescr}
<li><a href="#tabs" rel="tcontent2">Specifications</a></li>
{/if}
{if $active_modules.Detailed_Product_Images ne "" && ($config.Detailed_Product_Images.det_image_popup ne 'Y' || $js_enabled ne 'Y')}
{if $images ne ""}
<li><a href="#tabs" rel="tcontent3">Dimensions</a></li>
{/if}{/if}
{if $active_modules.Upselling_Products ne ""}
<li><a href="#tabs" rel="tcontent4">Related Items</a></li>
{/if}
</ul>
<div class="tabcontentstyle">
<div id="tcontent1" class="tabcontent">
{if $product.descr ne ""}{$product.descr}{ /if}
</div>
<div id="tcontent2" class="tabcontent">
{if $product.fulldescr ne ""}{$product.fulldescr}{/if}
</div>
{if $active_modules.Detailed_Product_Images ne "" && ($config.Detailed_Product_Images.det_image_popup ne 'Y' || $js_enabled ne 'Y')}
<div id="tcontent3" class="tabcontent">
{include file="modules/Detailed_Product_Images/product_images.tpl" }
</div>
{/if}
{if $active_modules.Upselling_Products ne ""}
<div id="tcontent4" class="tabcontent">
{include file="modules/Upselling_Products/related_products.tpl" }
</div>
{/if}
</div>
<script type="text/javascript">
//Start Tab Content script for UL with id="maintab" Separate multiple ids each with a comma.
initializetabcontent("maintab")
</script>
{* TABS MENU END *}
Quote:
Originally Posted by Vetrivel
Double check whether you provide the same detailed description for both the tabs.
|