4

大変お世話になりました。私は Magento を初めて使用し、その可能性を探っています。カテゴリとその属性から製品をロードする次のコードがあります。

<?php
    $_productCollection=$this->getLoadedProductCollection();
    $_helper = $this->helper('catalog/output');
?>

<?php if(!$_productCollection->count()): ?>
<p class="note-msg"><?php echo $this->__('There are no products matching the selection.') ?></p>
<?php else: ?>
<div class="category-products">
     <?php // Grid Mode ?>
    <?php $_collectionSize = $_productCollection->count() ?>
    <?php $_columnCount = $this->getColumnCount(); ?>
        <?php $_iterator = 0; ?>
        <ul class="products-grid">    
        <?php $i=0; foreach ($_productCollection as $_product): ?>
            <li class="item">
                <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(252); ?>" width="252" height="252" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
                <h3 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($_product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></a></h3>
                <h4 class="product-name"><?php echo $_product->getAttributeText('manufacturer') ?></h4>                
                <?php echo $this->getPriceHtml($_product, true) ?>
             </li>  
        <?php endforeach ?>
        </ul>
        <script type="text/javascript">decorateGeneric($$('ul.products-grid'), ['odd','even','first','last'])</script>
</div>
<?php endif; ?>

私の質問は、「echo $_product->getAttributeText('manufacturer')」がここで機能しないのはなぜですか? さまざまなコードで数え切れないほどのバリエーションを試しましたが、メーカーのパラメーターが表示されません。なぜなのかご存知ですか?

4

2 に答える 2

5

Adam Mossが提案したことを試してみましたが、うまくいきました:

「製品リストに表示」は、管理者の属性エディターで「はい」に設定する必要がありました。その後、 echo $_product->getAttributeText('manufacturer') は問題なく動作しました。

于 2013-01-23T13:18:26.217 に答える