开发者

Magento Move attributes.phtml

开发者 https://www.devze.com 2023-02-09 04:00 出处:网络
i need to remove short description in the vi开发者_运维技巧ew.phtml and replace with attribute.phtml tab...how to do it? Thanks.Edit your theme\'s template/catalog/product/view.phtml (not the base the

i need to remove short description in the vi开发者_运维技巧ew.phtml and replace with attribute.phtml tab...how to do it? Thanks.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消