我正在使用Magento,我想要的是:
在产品页面的产品评论下,我想添加一个额外的“添加评论”按钮。我所做的是在template\review\product\view\list.html上添加以下链接
<a href="<?php echo $this->getReviewsUrl() ?>#review-form"><span><?php echo $this->__('Write review') ?>
该链接显示在产品评论的底部,因此运行良好,但当我单击该按钮时,什么也没有发生。
有人知道怎么修吗?
提前感谢!
发布于 2011-12-09 01:01:54
试试这个:
<?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>https://stackoverflow.com/questions/8432310
复制相似问题