1

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

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

并创建新的静态块

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

接下来我在中创建文件 categories.phtml

app/design/frontend/default/my_template/template/catalog/navigation

类别.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; ?>

不工作!

4

1 回答 1

0

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

这是非常好的文档,具有图形理解,可以列出 cms 块中的类别数量

这篇文章,你可以轻松解决你的问题

希望这对您有所帮助。

于 2013-07-22T03:35:34.080 回答