我想添加一个指向“撰写评论”的链接。页面上的类别页面,以防没有对同一产品的评论。我该怎么做?
答案 0 :(得分:6)
您可以按如下方式计算产品的评论数量:
$reviewCount = $_product->getRatingSummary()->getReviewsCount() ? $_product->getRatingSummary()->getReviewsCount(): 0;
if($reviewCount == 0){
//add write review link here
}
并按如下方式编写锚标记:
<a href="<?php echo Mage::getUrl('review/product/list', array('id'=> $_product->getId())); ?>#review-form" rel="nofollow"> <?php echo $this->__('Write Review') ?></a>