2016-01-18 225 views
0

我需要在分组产品中显示我的关联产品自定义属性,如大小,颜色。在下面的表格代码中。我是一个magento项目的初学者。请给一个解决方案。如何在产品页面上显示相关产品属性(分组产品)

enter image description here

<?php foreach ($_associatedProducts as $_item): ?> 
    <?php $_finalPriceInclTax = $this->helper('tax')->getPrice($_item, $_item->getFinalPrice(), true) ?> 
    <tr> 
     <td><!--Color--></td> 
     <td><!--Size--></td> 

回答

0

我发现下面的代码,解决我的问题。

<td><?php echo $this->htmlEscape($_item->getAttributeText('shirtcolor')); ?></td> 
     <td><?php echo $this->htmlEscape($_item->getAttributeText('shirtsize')); ?></td> 

如果有人试过我的问题的解决方案谢谢!

相关问题