0
我在一個magento網站上工作,我想在右側欄中添加熱門標籤塊。 我已經在tag.xml中添加了這段代碼顯示magento側欄中的熱門標籤
<default>
<!-- Mage_Tag -->
<reference name="right">
<block type="tag/popular" name="tags_popular" template="tag/popular.phtml"/>
</reference>
</default>
但它不工作。 我在設計中嘗試這個代碼/ frontedn /默認/主題/模板/頁/ 2columns-right.phtml
<?php echo $this->getLayout()->createBlock('tag/popular')->setTemplate('tag/popular.phtml')->toHtml(); ?>
但它也不能正常工作。 我錯過了什麼? 有沒有辦法在我的主題中的右側欄中添加熱門標籤塊?