Magento Move attributes.phtml

1.5k Views Asked by At

i need to remove short description in the view.phtml and replace with attribute.phtml tab...how to do it? Thanks.

1

There are 1 best solutions below

0
On

Edit your theme's template/catalog/product/view.phtml (not the base theme's, that can get overwritten) and replace this:

<?php if ($_product->getShortDescription()):?>
    <div class="short-description">
        <h2><?php echo $this->__('Quick Overview') ?></h2>
        <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
    </div>
<?php endif;?>

with this:

<?php echo $this->getChildHtml('additional') ?>

And further down where you see the same line delete it. This avoids duplication.