如何在list.phtml中获取自定义Magento属性?

时间:2011-08-01 12:22:36

标签: php magento

如何在Magento(版本1.4)类别的产品列表中获取自定义属性(在list.phtml中)?

我正在尝试通过添加

来修改catalog.xml
<action method="addAttribute"><code>format</code></action>

并在list.phtml

<?php echo $_product->getAttributeText('format'); ?>

<?php echo $_product->getFormat(); ?>

但它不起作用。怎么办呢?

2 个答案:

答案 0 :(得分:1)

它工作正常,只需将此代码放在list.phtml或view.phtml文件中所需的位置。

$attribute = $_product->getResource()->getAttribute('unit');
if ($attribute){
    echo $attribute_value = $attribute ->getFrontend()->getValue($_product);
}

答案 1 :(得分:0)