【发布时间】:2014-11-03 07:09:36
【问题描述】:
我正在开发一个 magento 网站,我想在右侧边栏中添加流行的标签块。 我已经在 tag.xml 中添加了这段代码
<default>
<!-- Mage_Tag -->
<reference name="right">
<block type="tag/popular" name="tags_popular" template="tag/popular.phtml"/>
</reference>
</default>
但它不起作用。 我在 design/frontedn/default/theme/template/page/2columns-right.phtml 中尝试了这段代码
<?php echo $this->getLayout()->createBlock('tag/popular')->setTemplate('tag/popular.phtml')->toHtml(); ?>
但它也不起作用。 我错过了什么吗? 有没有办法在我的主题的右侧边栏中添加流行的标签块??
【问题讨论】: