服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

magento把reviews的链接换成产品的链接

时间:2016-01-27 08:20来源: 作者: 点击:
Magento首面到产品list.phtml里面看看 有没有调用 ?php if($_product-getRatingSummary()): ? ?php echo $this-getReviewsSummaryHtml($_product, short) ? ?php endif; ? 然后打开:review/helper/下面的summary_short 2.phtml spana
Magento首面到产品list.phtml里面看看 有没有调用
<?php if($_product->getRatingSummary()): ?>
           <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
 <?php endif; ?>
然后打开:review/helper/下面的summary_short 2.phtml
 
<span><a href="#" onclick="var t = opener ? opener.window : window; t.location.href='<?php echo $this->getReviewsUrl() ?>';"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a></span>
直接修改href 为:<?php echo $this->getProduct()->getProductUrl(); ?>
返回列表页,修改完成!
(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------