我已经按照magento教程创建了一个模块。在第3部分“第3部分 - Magento控制器调度”。我没有问题创建模块。但在第4部分中,我对布局感到困惑,
如何在magento中创建页面模板。但是,当我按照代码“创建文件”时
app/design/frontend/base/default/layout/local.xml
我的主题中已经有了local.xml文件。所以我很困惑我在哪里可以创建文件并添加行
<layout version="0.1.0">
<default>
<block type="page/html" name="root" output="toHtml" template="magentotutorial/helloworld/simple_page.phtml" />
</default>
</layout>
我已经在local.xml文件中写入了以下行。
left.permanent.callout
<reference name="right">
<action method="unsetChild"><name>right.permanent.callout</name></action>
<remove name="paypal.partner.right.logo"/>
</reference>
<reference name="root">
<remove name="global_messages" />
</reference>
<reference name="content">
<block type="core/template" name="alert_global_messages" template="core/messages.phtml" before="-" />
</reference>
<reference name="before_body_end">
<block type="core/template" name="jquery_noconflict" template="jquery/noconflict.phtml" before="-" />
</reference>
现在,我该如何添加行
在我的local.xml文件中。