Magento – Remove Header in IWD One Page Checkout

headerlayoutlayout-update

trying to remove the header at the final checkout page using iwd one page checkout extension.
In iwd_opc.xml I added

<remove name="footer"/>

below

<opc_index_index translate="label">

<label>Onepage Checkout</label>

But when I do the same with <remove name="header"/> all the the page goes blank.

How can I remove the header, or at least the menu? Thank you!

Best Answer

in your themes local.xml please use

<opc_index_index>
<remove name="footer"/>
</opc_index_index>

for header try to remove following

<opc_index_index>
    <reference name="header">
        <remove name="top.search" />
        <remove name="top.links" />
        <remove name="top.menu" />
    </reference>
</opc_index_index>