我在Magento中獲得了子類別列表的類別頁面。該列表具有圖像和名稱,但我也想顯示這些子類別的描述。我試圖簡單地添加Magento在類別list.phtml上顯示子類別描述
<strong><?php echo $this->htmlEscape($_category->getDescription()) ?></strong>
但它不工作。
編輯:我得到了一個傳統的方式小類:
<?php if (!$_categoryCollection->count()): ?>
<p class="note-msg"><?php echo $this->__('There are no subcategories matching the selection.') ?></p>
<?php else: ?>
<div class="category-products">
<?php $_collectionSize = $_categoryCollection->count() ?>
<?php $_columnCount = $this->getColumnCount(); ?>
<?php $i=0; foreach ($_categoryCollection as $_category): ?>
<?php if ($i++%$_columnCount==0): ?>
<ul class="products-grid">
<?php endif ?>
<li class="item<?php if(($i-1)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
<a href="<?php echo $_category->getUrl() ?>" class="product-image"><img class="photo" src="<?php echo $this->getCategoryImage($_category, 214, 184); ?>" width="214" height="184" alt="<?php echo $_category->getName() ?>" />
<strong><?php echo $this->htmlEscape($_category->getName()) ?></strong>
<strong><?php echo $_category->getDescription() ?></strong>
</a>
</li>
<?php if ($i%$_columnCount==0 || $i==$_collectionSize): ?>
</ul>
<?php endif ?>
<?php endforeach ?>
</div>
我已經嘗試通過增加->addAttributeToSelect(’description’)
以更新category.php
文件中的公共職能getChildrenCategories($category)
,但它不工作。
你如何得到子類?請添加更多代碼... – Simon