カスタム 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>
からの出力に Magento からのコードを含めないようにしたいのですが、cart.phtml
Magento に記述されたコードのみを含める必要があります。
今実行すると、他のすべてのタグをhttp://127.0.0.1/mag/index.php/module/cart/
含む完全なHTML
ページが出力されます。<html>, <head>, <body>
これらのタグを削除するにはどうすればよいですか? に書かれた内容だけを取得したいmodule/cart.phtml
。
Magento でデフォルトのレイアウト レンダリングを削除/防止する方法はありますか?