如何在自定义布局magento中调用自定义模板

时间:2014-04-08 14:45:30

标签: magento

我创建了名为innerpage.phtml的自定义布局和文件/var/www/magento/app/design/frontend/sfreaks/default/template/page的位置。它工作正常。现在我想在这个布局中调用自定义模板。

我的自定义模板名称为flatfooter.phtml,我已将其放入

/var/www/magento/app/design/frontend/sfreaks/default/template/page文件夹。

我用于在布局innerpage.phtml中调用的代码是

<?php  echo $this->getChildHtml('flatfooter') ?>

我在文件位置page.xml

的布局文件/var/www/magento/app/design/frontend/sfreaks/default/layout中定义了块

代码为<block type="core/html_footer" name="flatfooter" output="toHtml" template="page/flatfooter.phtml" />

但它没有用,任何人都可以帮忙。

2 个答案:

答案 0 :(得分:0)

在page.xml中默认定义

<default translate="label" module="page">

... ... ...

<block type="core/html_footer" name="flatfooter" output="toHtml" template="page/flatfooter.phtml" />

... ... ...         

答案 1 :(得分:0)

试试这个<block type="page/html_footer" name="flatfooter" as="flatfooter" output="toHtml" template="page/flatfooter.phtml" />希望这会有所帮助。