チェックアウト ページのヘッドからブロックを削除するのに問題があります。
Page.xml
<block type="page/html_head" name="head" as="head">
<block type="core/text_list" name="before_head_end" as="before_head_end">
<block type="core/template" name="ds_head_extras" as="ds_header_extras" template="dsingleton/headerextras/head_extras.phtml"/>
</block>
</block>
今、チェックアウトページでのみ同じブロックを削除しようとしているので、チェックアウトxmlでブロックを削除する3つの異なる方法を試しましたが、どれも機能しません。誰かが私が間違っている場所を指摘できますか?
Checkout.xml の 最初の試行:
<checkout_onepage_index translate="label">
<label>One Page Checkout</label>
<!-- Mage_Checkout -->
<reference name="head">
<remove name="before_head_end" />
</reference>
</checkout_onepage_index>
2 回目の試行:
<checkout_onepage_index translate="label">
<label>One Page Checkout</label>
<!-- Mage_Checkout -->
<reference name="head">
<action method="unsetChild"><name>before_head_end</name></action>
</reference>
</checkout_onepage_index>
3 回目の試行:
<checkout_onepage_index translate="label">
<label>One Page Checkout</label>
<!-- Mage_Checkout -->
<reference name="head">
<reference name="before_head_ends>
<action method="unsetChild"><name>ds_head_extras</name></action>
</reference>
</reference>
</checkout_onepage_index>