Magento中分组产品的所有附加属性

时间:2009-12-29 00:51:44

标签: magento attributes product

与提出的问题类似: Magento - Show Custom Attributes in Grouped Product table

我想在分组产品页面中显示简单产品的属性。

但是,我需要它才能使您不明确指定显示哪些属性。相反,它会显示将在该产品的简单产品视图中显示的所有属性。

我尝试过各种变体:

(来自/template/catalog/product/view/type/grouped.phtml)

<?php foreach ($_associatedProducts as $_item): ?>
  <tr>
            <td><?php echo $this->htmlEscape($_item->getName()) ?></td>

   <!-- important problem part -->
   <?php foreach ($_item->getAttributes() as $arr): ?>
    <td><?php echo $arr->getData() ?></td>
   <?php endforeach; ?>
   <!-- end of problem part -->

            <td class="a-right">
                <?php echo $this->getPriceHtml($_item, true) ?>
            </td>
            <?php if ($_product->isSaleable()): ?>
            <td class="a-center">
            <?php if ($_item->isSaleable()) : ?>
    <a href="<?php echo $_item->getUrlPath() ?>">View</a>
            <?php else: ?>
                <p class="availability"><span class="out-of-stock"><?php echo $this->__('Out of stock.') ?></span></p>
            <?php endif; ?>
            </td>
            <?php endif; ?>
        </tr>
    <?php endforeach; ?>

然而,其他变体,我不能将显示的属性限制为我需要的属性(即只是简单产品视图上显示的附加属性;在前端设置为可查看的属性)。有什么想法吗?

2 个答案:

答案 0 :(得分:1)

类Mage_Catalog_Block_Product_View_Attributes方法getAdditionalData()应指向如何将变量限制为仅在前端可选择的变量。其getAdditionalData方法在产品视图块中引用。

解决这个问题的步骤如下:  1.创建一个新的Magento模块,旨在覆盖分组的产品块。  2.创建新的分组产品块,从Mage_Catalog_Block_Product_View_Attributes的getAdditionalData()方法中大量窃取。  3.基于/template/catalog/product/view/type/grouped.phtml创建一个新模板以备份自定义块。  4.覆盖模块config.xml中的块(参见:Overriding catalog/breadcrumbs and catalog/products/view,Magento论坛)

这导致目录中的所有分组产品都会以这种方式运行。如果你需要更具选择性,那么我认为合理的做法是为目录产品添加一个自定义属性(最好在你刚创建的自定义模块中设置!)以便切换行为,并编写一个检查为此切换到您的模板。

答案 1 :(得分:1)

$_product = $this->getProduct();

之后添加
/* CODE TO GET ATTRIBUTES */
$gridattributes = array();
$attributes = $_product->getAttributes();
foreach ($attributes as $attribute) {
  if ($attribute->getIsVisibleOnFront() && !in_array($attribute->getAttributeCode(), $excludeAttr)) {
    $value = $attribute->getFrontend()->getValue($_product);
    if (!$_product->hasData($attribute->getAttributeCode())) {
      $value = Mage::helper('catalog')->__('N/A');
    } elseif ((string)$value == '') {
      $value = Mage::helper('catalog')->__('No');
    } elseif ($attribute->getFrontendInput() == 'price' && is_string($value)) {
      $value = Mage::app()->getStore()->convertPrice($value, true);
    }

    if (is_string($value) && strlen($value)) {
      $gridattributes[$attribute->getAttributeCode()] = array(
        'label' => $attribute->getStoreLabel(),
        'value' => $value,
        'code'  => $attribute->getAttributeCode()
      );
    }
  }
}
?>

<th><?php echo $this->__('Product Name') ?></th>之后添加:

foreach($gridattributes as $attrib){
    echo '<th>'.$this->htmlEscape($attrib[label]).'</th>';
}

<td><?php echo $this->htmlEscape($_item->getName()) ?></td>之后添加:

foreach($gridattributes as $attribname=>$attribval){
    echo '<td>'.$this->htmlEscape($_item->getData($attribname)).'</td>';
}