在主页上,我使用以下代码显示特定类别的一些产品:
{{block type="catalog/product_list" category_id="213" column_count="6" template="catalog/product/list.phtml"}}
是否有一个块可以用来通过 CMS 页面或块呈现类别描述?
在主页上,我使用以下代码显示特定类别的一些产品:
{{block type="catalog/product_list" category_id="213" column_count="6" template="catalog/product/list.phtml"}}
是否有一个块可以用来通过 CMS 页面或块呈现类别描述?
没有内置功能,但您可以自己添加一个块。在主页内容中添加:
{{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;?>