请有人帮我如何设计类别和子类别列表,如下所示 http://www.officemax.com.au/office-supplies/writing.html
PS :: Magento默认设计是当您单击某个类别时,它将直接列出该类别中的所有产品。我真正想做的是,它应首先在页面中列出所有子类别,如上面的示例网站http://www.officemax.com.au/office-supplies/writing.html,然后列出该子类别的所有相关产品
如果有人可以帮助我,我将不胜感激。
答案 0 :(得分:1)
1.-在 app / design / frontend / base / default / template / catalog / navigation 文件夹中创建一个名为 subcategory.phtml 的页面,并添加以下代码段:
<?php $_categories = $this->getCurrentChildCategories(); ?>
<?php foreach ($_categories as $_category): ?>
<?php if($_category->getIsActive()): ?>
<a href="<?php echo $_category->getURL() ?>" title="<?php echo $this->htmlEscape($_category->getName()) ?>"><?php echo $this->htmlEscape($_category->getName()) ?></a>
<?php endif; ?>
<?php endforeach; ?>
2.-创建一个名为“MySubcategory”的静态块,并将以下代码放入内容中:
{{block type="catalog/navigation" template="catalog/navigation/subcategory.phtml"}}
3.-现在转到您要用于显示子类别的类别,并确保该类别未设置为“锚”。在显示选项选项卡中,将其设置为显示为“仅静态阻止”并选择块“ MySubcategory ”
答案 1 :(得分:0)
使用Easy Catalog Images模块: http://www.magentocommerce.com/module/1562/magento-easy-catalog-images