在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') ?> (责任编辑:最模板) |