Magento CMS – Remove Footer Blocks in CMS Page Using Layout Update

blockslayout-update

I created a cms page, but I don't want footer to display on this page, I added below line at layout update,

<reference name="footer">
    <remove name="footer_links" />
</reference>

I am using magento 1.9 rwd theme to test.

But the footer still exists, I remember I had done similar thing in the past, but I forgot how to do it twice again

Best Answer

Your layout XML should be like this.

<cms_page>
    <reference name="footer">
           <remove name="footer_links" />
    </reference>
</cms_page>

This will remove blocks from your cms page.

Related Topic