我已经为 magento 使用了 mobileshoppe 主题,并试图在产品详细信息页面上显示最近查看的产品列表,但有些它无法正常工作......
在 catalog.xml 中添加了以下代码
<catalog_product_view translate="label">
<reference name="content">
<block type="reports/product_viewed" name="product.recently.viewed" as="product_recently_viewed" template="reports/product_viewed.phtml"/>
</reference>
</catalog_product_view>
和下面的代码在 app\design\frontend\default\mobileshoppe\template\catalog\product\view.phtml
<?php echo $this->getChildHtml('product_recently_viewed') ?>
我已经尝试过使用默认主题,但它也无法正常工作,任何人都可以帮我解决这个问题吗?
谢谢...