如何在侧栏上显示单个类别树?
不是产品,只是类别树。
答案 0 :(得分:1)
我一直在使用Vertical Navigation做类似的事情。
答案 1 :(得分:0)
这样做的正式方法是使用Module Creator创建一个模块(搜索Magento Connect),然后:
使用以下代码创建一个新的phtml文件:
$storeCategories = $this->getCats('my-category-url-key');
foreach ($storeCategories as $category):
echo '<li><a href="' . $category->getUrl() . '">' . $category->getName() . '</a></li>';
endforeach;
然后使用以下代码调用(例如)Namespace_Yourmodule_Block_Singlecat
块:
public function getCats($catName)
{
$parent = Mage::getResourceModel('catalog/category_collection')
->addAttributeToSelect('entity_id')
->addAttributeToFilter('url_key', $catName)
->getFirstItem();
return $storeCategories = Mage::getModel('catalog/category')
->getCategories( $parent->getId(), $recursionLevel=1, $sorted=false, $asCollection=true, $toLoad=false);
}
然后您只需要将以下节点插入app\design\frontend\yourtheme\layout\yourmodule.xml
布局文件中:
<reference name="left">
<block type="yourmodule/singlecat" name="singlecat" template="path/yourfilename.phtml" />
</reference>
交叉你的手指,向你的神灵祈祷,Magento可能会对你的代码微笑:)