在主页上,我使用以下代码显示特定类别的一些产品:
{{block type="catalog/product_list" category_id="213" column_count="6" template="catalog/product/list.phtml"}}
我是否可以使用块来通过CMS页面或块呈现类别描述?
答案 0 :(得分:5)
没有内置功能,但您可以自己添加一个块。在主页内容中添加:
{{block type="core/template" template="catalog/category/description.phtml" category_id="213"}}
现在使用以下内容
创建文件app/design/frontend/{interface}/{theme}/template/catalog/category/description.phtml
<?php $categoryId = $this->getCategoryId();?>
<?php $category = Mage::getModel('catalog/category')->setStoreId(Mage::app()->getStore()->getId())->load($categoryId);?>
<?php if ($category->getId() && $category->getIsActive() && $_description = $category->getDescription()) : ?>
<?php echo $this->helper('catalog/output')->categoryAttribute($category, $_description, 'description')?>
<?php endif;?>