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

在magento产品描述页显示最近浏览查过的商品

时间:2015-12-28 12:21来源:未知 作者:最模板 点击:
在magento产品描述页显示最近浏览查过的商品。使用下面的代码如下: 找到catalog.xml 文件插入如下代码: block type=reports/product_viewed name=reports.product.viewed as=recently_viewed template=reports/produc

在magento产品描述页显示最近浏览查过的商品。使用下面的代码如下:

找到catalog.xml 文件插入如下代码:
 

<block type="reports/product_viewed" name="reports.product.viewed" as="recently_viewed" template="reports/product_viewed.phtml"> 
<action method="setColumnCount">
<columns>4</columns>
</action>
  <action method="setItemLimit">
<type>recently_viewed</type><limit>4</limit>
</action>           
</block>

找模板目录文件app/design/frontend/YOUR_THEME/catalog/product/view.phtml
加入以下代码:

<?php echo $this->getChildHtml('recently_viewed') ?>

 

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------