问题描述
我只是尝试添加其他模板文件以在右侧栏中包含一个内容块,但失败了。
以下是我的努力
在local.xml文件中添加
@H_502_1@<reference name=\"right\">
<block type=\"cms/template\" name=\"right.side.template\">
<action method=\"setTemplate\">
<template>callouts/right_template.phtml</template>
</action>
</block>
</reference>
我也试过了
@H_502_1@<block type=\"cms/template\" template=\"callouts/right_template.phtml\"/>
并创建了模板文件callouts / right_template.phtml。
但是它不会在右侧栏中加载模板文件内容。
我该怎么办?我已经清除了magento缓存。
解决方法
我自己发现我使用了错误的类型
type=\"cms/template\"
。应该是type=\"core/template\"
<block type=\"core/template\" template=\"callouts/right_template.phtml\"/>