我使用magento和我有我自己的模板,但在我的產品詳細信息頁面左側我有比較產品。我怎樣才能刪除這個區塊?Magento刪除產品比較
3
A
回答
7
只需在您的theme/layout/local.xml下創建local.xml文件,並將其放置在代碼下方。
<layout version="0.1.0">
<default>
<!-- remove compare products -->
<remove name="catalog.compare.sidebar" />
</default>
</layout>
2
該塊被添加到佈局文件中。您可以在原始文件或擴展布局中刪除此塊。
默認情況下,該塊中的文件
/app/design/frontend/base/default/layout/catalog.xml
/app/design/frontend/base/default/layout/customer.xml
加1)這個文件複製到你的主題文件夾,刪除字符串
<block type="catalog/product_compare_sidebar" before="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
2)在佈局文件中添加行
<default>
<reference name="right">
<action method="unsetChild"><name>catalog.compare.sidebar</name></action>
</reference>
<reference name="left">
<action method="unsetChild"><name>catalog.compare.sidebar</name></action>
</reference>
</default>
<customer_account>
<reference name="left">
<action method="unsetChild"><name>catalog.compare.sidebar</name></action>
</reference>
<reference name="right">
<action method="unsetChild"><name>catalog.compare.sidebar</name></action>
</reference>
</customer_account>
0
要完全禁用比較產品功能,您可以使用此free extension。
-2
剛剛從layout/catalog.xml
刪除此塊compare products section
將會消失:
<reference name="left">
<block type="catalog/product_compare_sidebar" after="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
</reference>
-1
只需刪除該文件/app/design/frontend/base/default/template/catalog/product/compare/sidebar.html或重命名它。
相關問題
- 1. Magento比較產品
- 2. Magento產品比較限制
- 3. Magento - 刪除產品類型
- 4. Magento配置產品,同時比較
- 5. 刪除Magento中的停產產品
- 6. 在Magento的產品比較頁上獲取產品ID?
- 7. Drupal6 - 產品比較
- 8. 刪除所有產品屬性magento
- 9. 刪除Magento上的所有產品
- 10. Magento產品刪除不起作用
- 11. Magento刪除產品自定義選項
- 12. Magento的刪除該產品在心願
- 13. 禁用/刪除Magento中的產品
- 14. Magento - 刪除產品類型選項
- 15. 刪除Magento中的產品問題
- 16. Magento產品刪除觀察者?
- 17. PHP產品vs產品比較
- 18. Magento的產品:從產品名稱中刪除SKU
- 19. Magento - 無法刪除多產品選擇值在產品管理
- 20. Magento:刪除產品圖像和產品數據
- 21. 保存添加/刪除的產品與Jquery進行比較
- 22. 添加/刪除要與Jquery比較的產品
- 23. 刪除願望清單和產品比較從Opencart 1.5
- 24. 交叉表比較,產品
- 25. 產品比較會話
- 26. 在Virtuemart中比較產品
- 27. 如何在magento的產品頁面中顯示最近比較的產品?
- 28. 使用產品ID刪除magento購物車商品產品鏈接
- 29. 在沒有登錄的情況下比較magento中的產品
- 30. Magento在類別頁面上顯示產品比較
它不會從產品頁面刪除。 –