我正在使用
$_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description');
在catalog / product / view.phtml中显示产品简短说明。
虽然启用模板路径提示显示它们都来自view.phtml
,但它显示在单个产品页面中,但未显示在产品评论页面中有什么建议吗?
答案 0 :(得分:2)
magento上有一些logical implementation avalibale
。
我在课程Mage_Review_Block_Product_View
中看到short description
设置为null。
我对该代码发表了评论。现在它正在运作
复制app/code/core/Mage/Review/Block/Product/View.php
到app/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