Product View tabs error

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:

Attachment 36585

Any suggestion?

3 answers

Profile photo of Seoki Lee 1510.00 $tone May 8, 2014
Public

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.

#1

Please login or Register to Submit Answer

Written By

Comments