我尝试在我的产品类别列表中添加“简短描述”,但我的list.phtml上没有任何内容 我尝试:app / design / frontend / base / default / template / catalog / product / list.phtml
在我的点亮视图中有这个代码: (我将此代码复制到网格块但没有发生任何事情)
<div class="desc std">
<h1>test</h1>
<?php echo $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description') ?>
<a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped ?>" class="link-learn"><?php echo $this->__('Learn More') ?></a>
</div>
答案 0 :(得分:1)
转到Catalog->Attributes->Manage attributes
,搜索short_description
属性,对其进行修改,然后将字段Used in product listing
设置为Yes
。重新索引一切,它应该工作。
的 [编辑] 强>
或者你可以简单地使用它:
<?php echo $_product->getShortDescription();?>