Magento 1.5 升级到1.6, 解决评论只显示第一条

将Magento 从1.5升级到1.6之后,商品列表的评论只有第一个商品的显示了 查看之后,是升级后有个函数的判断出现问题 app\code\core\Mage\Catalog\Block\Product\Abstract.php下的getReviewsSummaryHtml函数 if ($this->_initReviewsHelperBlock()) { return $this->_reviewsHelperBlock->getSummaryHtml($product, $templateType, $displayIfNoReviews); }

return ‘’;

应该为 $this->_initReviewsHelperBlock(); return $this->_reviewsHelperBlock->getSummaryHtml($product, $templateType, $displayIfNoReviews); 问题解决 修改后的列表评论显示完整