在Magento上显示分类

时间:2013-07-21 18:20:15

标签: magento magento-1.7 categories

我创建了1个根类别和2个子类别

http://i.imgur.com/AEK3mO9.jpg

AND创建新的静态块

http://i.imgur.com/TnM5Ucc.jpg

接下来我在

中制作文件categories.phtml
app/design/frontend/default/my_template/template/catalog/navigation

categories.phtml

    <?php foreach ($this->getStoreCategories() as $_category): ?>
<?php $open = $this->isCategoryActive($_category); ?>
<?php
$cur_category=Mage::getModel('catalog/category')->load($_category->getId());
$layer = Mage::getSingleton('catalog/layer');
$layer->setCurrentCategory($cur_category);
if ($immagine = $this->getCurrentCategory()->getImageUrl()):
?>
<div style="float: left; padding-right: 30px; text-align: center;">
<div class="linkimage">
<p>
<a href="<?php echo $this->getCategoryUrl($_category)?>">
<img src="<?php echo $immagine ?>" alt="<?php echo $this->htmlEscape($this->getCurrentCategory()->getName()) ?>" width="135" height="135" />
<?php echo $_category->getName()?>
</a>
</p>
</div>
</div>

<?php endif; ?>
<?php endforeach; ?>

不工作!

1 个答案:

答案 0 :(得分:0)

您的配置可能存在一些问题,可能在列表页面中

这里有非常好的文档,图形化理解列出了cms块中的类别数

只需抛出this article即可轻松解决问题

希望这对您有所帮助。