我正在尝试在主页上创建产品块,在那里我将page.xml复制到我的主题的布局文件夹并修改它像
<page_two_columns_left translate="label">
<label>All Two-Column Layout Pages (Left Column)</label>
<reference name="root">
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
<!-- Mark root page block that template is applied -->
<action method="setIsHandle"><applied>1</applied></action>
</reference>
<reference name="content">
<block type="core/template" name="mycategories" output="toHtml" template="sweet/sweet.phtml"/>
</reference>
在这里,我期待在我的主页中间有一个区块,我得到了这个,但除此之外,我在主页的底部再获得一个块(与此块sweet.phtml相同)。在页脚链接下方。谁能告诉我这是什么问题。
答案 0 :(得分:12)
您已将块标记为输出块。当视图通过控制器操作中的renderView()
呈现时,您的块既是块的子节点,也可以回显其子节点( content 是core/text_list
块),以及作为一个输出块,它将以自己的方式呈现。
删除output="toHtml"
位,您将拥有所需的一切。顺便说一句,您可以/应该将此更改从自定义page.xml移动到布局中的local.xml文件中 - 它只需要位于<page_two_columns_left />
布局更新句柄内。