我需要在Grouped产品下显示我的相关产品自定义属性,如大小,颜色。在下面的表代码中。我是magento项目的初学者。请给出一个解决方案。
<?php foreach ($_associatedProducts as $_item): ?>
<?php $_finalPriceInclTax = $this->helper('tax')->getPrice($_item, $_item->getFinalPrice(), true) ?>
<tr>
<td><!--Color--></td>
<td><!--Size--></td>
答案 0 :(得分:0)
我发现以下代码解决了我的问题。
<td><?php echo $this->htmlEscape($_item->getAttributeText('shirtcolor')); ?></td>
<td><?php echo $this->htmlEscape($_item->getAttributeText('shirtsize')); ?></td>
如果有人为我的问题尝试过解决方案,谢谢!