如何在页脚上添加新块?Magento

时间:2015-11-05 13:53:33

标签: php html xml magento

我有这个页面:

link

我想把h1标签放在下图中。

enter image description here

在档案app/design/frontend/rwd/default/layout/page.xml

我添加了以下代码XML

<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
                <block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
                    <label>Page Footer</label>
                    <action method="setElementClass"><value>bottom-container</value></action>
                </block>

                <block type="page/test2" name="test" as="test" template="page/test2/test.phtml"></block> //here is my modification

                <block type="page/switch" name="store_switcher" as="store_switcher" after="*" template="page/switch/stores.phtml"/>
                <block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml">
                    <action method="setTitle"><title>Quick Links</title></action>
                </block>
                <block type="page/template_links" name="footer_links2" as="footer_links2" template="page/template/links.phtml">
                    <action method="setTitle"><title>Account</title></action>
                </block>
                <!-- This static block can be created and populated in admin. The footer_links cms block can be used as a starting point. -->
                <!--<block type="cms/block" name="footer_social_links">
                    <action method="setBlockId"><block_id>footer_social_links</block_id></action>
                </block>-->
            </block>

然后我们创建了一个 PHTML 文件,我放在了位置

page/test2/test.phtml

PHTML文件代码

<h1>test</h1>

我想做一些像学习使用网站一样简单的事情。

你能告诉我什么是好的,什么应该纠正?

提前致谢!

1 个答案:

答案 0 :(得分:0)

首先:创建自己的主题而不是修改核心文件,请参阅:http://devdocs.magento.com/guides/m1x/ce19-ee114/RWD_dev-guide.html。您的代码问题是您的阻止类型,请尝试core/template阻止:

<block type="core/template" name="test" as="test" template="page/test2/test.phtml"></block>

当你完成测试时,请使用一些真实的名字。