如何删除Magento中每个页面中的块?

时间:2014-09-25 18:56:06

标签: magento

我是Magento的新手,我只想删除header中的一个块(我猜是XML),请参阅此代码:

<reference name="header">
<block type="cms/block" name="header_block">
<action method="setBlockId"><block_id>header_block</block_id></action>
</block>
</reference>

哪里,我的意思是在哪个文件中我必须放置XML代码来删除这个块? 每个页面都有这个块。

由于

1 个答案:

答案 0 :(得分:0)

你可以删除首先删除标题中的任何块,例如你可以检查Block的名称:我刚从local.xml文件中删除了top.links

<default>
    <reference name="header">
        <remove name="top.links"><!--  you can add your block name -->
    </reference>
</default>

在page.xml中添加了

<block type="page/template_links" name="top.links" as="topLinks"/>

因此删除了此名称块