我创建了名为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" />
但它没有用,任何人都可以帮忙。
答案 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" />
希望这会有所帮助。