我有一个自定义模板块(phtml),定义如下:
<block type="catalog/product" name="a.unique.name" template="dir/dir/customlist.phtml"/>
在此块内的 CMS 主页中定义
<reference name="left">
但是,如果我将它移到标题块,它不会出现
<reference name="header">
我在这里想念什么?
** - - 添加 - - -
我按照 D. Sloof 的建议尝试了这个,但它不起作用。(我怀疑更多是由于我的错误行为而不是他的解释。)
我添加了 getChildHtml('customlist'); ?> 到
mytheme\template\page\html\header.phtml
就在 div "top-col-1" 下
<div class="wrapper">
<div class="top-col-1">
<?php echo $this->getChildHtml('customlist'); ?>
“customlist”可以在哪里找到
mytheme/template/dir/dir/customlist.phtml
我究竟做错了什么?