【发布时间】:2014-06-18 11:08:41
【问题描述】:
故事
我为此搜索了解决方案,但我找不到的似乎都无法解决问题;我是制作 Magento 模块的新手,作为开始,我尝试创建一个非常简单的 title 属性更改。
问题
很简单:它不起作用(Title 属性根本没有改变)。我刷新了所有缓存并验证模块确实在 Config > Advanced > Advanced 中加载。
代码:
/app/etc/modules/Acme_NewCoolModule.xml:
<?xml version="1.0"?>
<config>
<modules>
<Acme_NewCoolModule>
<active>true</active>
<codePool>local</codePool>
</Acme_NewCoolModule>
</modules>
</config>
app/code/local/Acme/NewCoolModule/etc/config.xml:
<?xml version="1.0"?>
<config>
<modules>
<Acme_NewCoolModule>
<version>1.0.0.0</version>
</Acme_NewCoolModule>
</modules>
<frontend>
<layout>
<updates>
<Acme_NewCoolModule>
<file>acme_newcoolmodule.xml</file>
</Acme_NewCoolModule>
</updates>
</layout>
</frontend>
</config>
app/design/base/default/layout/acme_newcoolmodule.xml:
<?xml version="1.0"?>
<layout>
<default>
<reference name="head">
<action method="setTitle"><string>Hello World</string></action>
</reference>
</default>
</layout>
【问题讨论】:
标签: magento