答案 0 :(得分:0)
打开主题模板的reports.xml。 (应用\设计\前端\主题\默认\布局\ reports.xml 强>) 会有像
这样的代码<block type="reports/product_viewed" before="right.permanent.callout" name="right.reports.product.viewed" template="reports/product_viewed.phtml" />
删除它,清除缓存并重新加载
答案 1 :(得分:0)
尝试从 catalog.xml 文件中的<catalog_product_view>
删除相关产品块:
<reference name="right">
<block type="catalog/product_list_related" name="catalog.product.related" before="-" template="catalog/product/list/related.phtml"/>
</reference>
删除块:
<block type="catalog/product_list_related" name="catalog.product.related" before="-" template="catalog/product/list/related.phtml"/>
答案 2 :(得分:0)
尝试在商店中查找已查看的商品说明。然后,在 yout theme的 local.xml中,使用正确的句柄将其从想要的部分中删除。
例如,如何在产品视图中删除Magento的基本主题默认指令:
<catalog_product_view>
<remove name="right.reports.product.viewed" />
</catalog_product_view>
下一个例子是我如何从我的商店中删除它,它基于不同的主题:
<catalog_product_view>
<remove name="product.info.viewed" />
<catalog_product_view>
清除缓存,你很高兴!
这是推荐的方法。您应该避免复制或修改原始XML布局文件。始终使用您的主题local.xml文件。