2016-01-18 67 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> 

如果有人試過我的問題的解決方案謝謝!

相關問題