I noted that DESCRIPTION and ADDITIONAL tabs have wrong or exchanged data:
In DESCRIPTION tab do not show anything.
In ADDITIONAL tab show just the normal description data instead of real additional data
See the picture: This are the same item from another store with Asenti Template
Attachment 36587Attachment 36586
Now the same item with current iTech store:
Any suggestion?
3 answers
I helped to fix directly on your site.
I edit the file: /app/design/frontend/default/jm_itech/template/catalog/product/view.phtml
At line 222, replace this code:
Code:
<?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?> <h3 class="accodion-main"><?php echo $this->__($alias); ?></h3> <?php endforeach;?> <?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?> <div id="<?php echo "ja-tab-{$alias}"?>" class="accodion-sub"> <div class="box-collateral <?php echo "box-{$alias}"?>"> <?php echo $html; ?> </div> </div> <?php endforeach;?>
With:
Code:
<?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?> <h3 class="accodion-main"><?php echo $this->__($alias); ?></h3> <div id="<?php echo "ja-tab-{$alias}"?>" class="accodion-sub"> <div class="box-collateral <?php echo "box-{$alias}"?>"> <?php echo $html; ?> </div> </div> <?php endforeach;?>
Please check again.
It work ok now Lee!!
Thanks you very much.
Great to hear that, if you have any further problem with our theme, please let us know.