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

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') ?>

猜你喜欢

转载自blog.csdn.net/xiangxixia/article/details/85328238