1

我尝试在我的产品类别列表中添加“简短描述”,但我的 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>
4

1 回答 1

1

转到Catalog->Attributes->Manage attributes,搜索short_description属性,对其进行编辑并将字段设置Used in product listingYes。重新索引所有内容,它应该可以工作。
[编辑]
或者你可以简单地使用这个:

<?php echo $_product->getShortDescription();?>
于 2013-07-24T07:22:33.557 回答