在右侧边栏magento中添加其他模板

时间:2011-06-15 07:07:09

标签: php magento

我只是尝试添加addtional模板文件以在右侧栏中包含一块内容但是失败了。

以下是我的努力

在local.xml文件中添加

<reference name="right">
   <block type="cms/template" name="right.side.template">
     <action method="setTemplate">
        <template>callouts/right_template.phtml</template>
    </action>                
   </block>
</reference>

我也试过这个

<block type="cms/template" template="callouts/right_template.phtml"/>

并创建了一个模板文件callouts / right_template.phtml。

但它没有在右侧栏中加载模板文件内容。

我该怎么办?我已经清除了magento缓存。

1 个答案:

答案 0 :(得分:7)

我自己发现我使用了错误的类型type="cms/template"。这应该是type="core/template"

<block type="core/template" template="callouts/right_template.phtml"/>