产品页面上关联产品属性的显示方式(分组产品)

时间:2016-01-18 15:10:15

标签: magento-1.9 product

我需要在Grouped产品下显示我的相关产品自定义属性,如大小,颜色。在下面的表代码中。我是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>

1 个答案:

答案 0 :(得分:0)

我发现以下代码解决了我的问题。

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

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