catalog / product / list.phtmlファイルの小さな問題に非常に混乱しています。
Magentoに付属するManufacturer属性をグリッドリストに追加しようとしています。次のコードを追加しました。
<?php echo $_product->getAttributeText('manufacturer') ?>
<?php if( $_product->getAttributeText('manufacturer') ): ?>
<p class="manufacturer">Manufactured by:<br/><?php echo $_product->getAttributeText('manufacturer')?></p>
<?php endif; ?>
これは、私のproduct / view.phtmlページで使用したのと同じコードで、そこで機能します。しかし、これはまったく機能しません。それ自体によるエコーまたはifステートメントでのエコー。どちらも何も返しません。
それで、list.phtmlファイルでこれらの属性を取得するために特別なことをする必要がありますか?