Magento的:getAttributeText( '制造商')不工作(Magen

2019-08-06 19:37发布

我将非常感谢您的帮助。 我是新来的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; ?>

我的问题是:为什么“回声$ _product-> getAttributeText(‘制造商’)”是不是在这里工作? 我曾尝试用不同的代码无数的变种,但厂商的参数只是不露面。 你知道为什么吗?

Answer 1:

我曾尝试亚当莫斯曾建议,它的工作:

“清单产品展示”需要在管理员的属性编辑器中设置为yes。 然后回声$ _product-> getAttributeText(“制造商”)的工作没有任何问题。



Answer 2:

所以我就用@Shawn_Northrop建议这方面的工作;

<?php 
echo $_product->getData('my_custom_attribute'); 
?>

快乐编码...



文章来源: Magento: getAttributeText('manufacturer') doesn't work