有没有一种方法可以使自定义模板指向特定的自定义页脚? 我在/enterprise/template/newtemplate/test.phtml
下创建了一个模板模板工作正常,但是使用的是默认的foot.phtml位于
/enterprise/template/page/html/foot.phtml
我希望模板test.phtml指向其他页脚。
答案 0 :(得分:1)
对于Magento 1.x :
将下面的代码放在local.xml
app / design / frontend / {您的主题} /default/layout/local.xml
<?xml version="1.0"?>
<layout version="0.1.0">
<default>
<reference name="footer">
<block type="core/template" name="mylogic" template="mylogic/mylogic.phtml"/>
</reference>
</default>
</layout>
将此内容写在您的footer.html
<?php echo $this->getChildHtml('mylogic') ?>