在magento的产品评论页面上添加产品简短说明

时间:2014-06-20 05:58:50

标签: magento magento-1.8

我正在使用

$_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description');

在catalog / product / view.phtml中显示产品简短说明。

虽然启用模板路径提示显示它们都来自view.phtml

,但它显示在单个产品页面中,但未显示在产品评论页面中

有什么建议吗?

1 个答案:

答案 0 :(得分:2)

magento上有一些logical implementation avalibale

我在课程Mage_Review_Block_Product_View中看到short description设置为null。 我对该代码发表了评论。现在它正在运作

复制app/code/core/Mage/Review/Block/Product/View.phpapp/code/local/Mage/Review/Block/Product/View.php 并编辑

 protected function _toHtml()
    {
        $this->getProduct()->setShortDescription(null);

        return parent::_toHtml();
    }

 protected function _toHtml()
    {
        //$this->getProduct()->setShortDescription(null);

        return parent::_toHtml();
    }

或启用从Admin>Catalog>Manage Attribute

的产品列表中使用的short_description