我想從我的自定義Magento模塊的模板/佈局文件中刪除所有默認塊。目前我使用單獨的刪除像刪除Magento模板中的所有塊
<module_cart_index>
<remove name="head" />
<remove name="header" />
<remove name="footer" />
<remove name="right"/>
<remove name="left"/>
<remove name="cart_sidebar" />
<remove name="checkout.cart" />
<remove name="sale.reorder.sidebar" />
<reference name="content">
<block type="checkout/cart" name="cp.cart" template="module/cart.phtml" />
</reference>
</module_cart_index>
我想從cart.phtml
輸出不能包含任何Magento的代碼,但它應該只包含寫在它的代碼。
現在,當我運行http://127.0.0.1/mag/index.php/module/cart/
它輸出一個完整的HTML
頁面<html>, <head>, <body>
和所有其他標籤。我如何刪除這些標籤? 我只想得到寫在module/cart.phtml
上的內容。
是否有任何方法可以刪除/阻止Magento中的默認佈局渲染?
嘿阿爾溫德。你有沒有找到這個解決方案?我有同樣的問題。 – Pablo