After the new updates to magento, if your template description field suddenly disappear from the frontend, don’t panic. It’s just a simple line of code change will fix this problem. Open catalog.xml and view.phtml, and you will need to make the following change.
This is the code that magento had changed.
Old line of code, this code can be find under this location,
app/design/frontend/default/YOURTHEME/template/catalog/product/view.phtml or
app/design/frontend/base/default/template/catalog/product/view.phtml
<?php echo $this->getChildHtml('description') ?>
New implementation from magento core for 1.4.1.1
<?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
<div class="box-collateral <?php echo "box-{$alias}"?>">
<?php if ($title = $this->getChildData($alias, 'title')):?>
<h2><?php echo $this->escapeHtml($title); ?></h2>
<?php endif;?>
<?php echo $html; ?>
</div>
<?php endforeach;?>
So next you will need to look for the following code in your template file.
Continue Reading »



