如何在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(); ?>
但它不起作用。怎么办呢?
答案 0 :(得分:1)
它工作正常,只需将此代码放在list.phtml或view.phtml文件中所需的位置。
$attribute = $_product->getResource()->getAttribute('unit');
if ($attribute){
echo $attribute_value = $attribute ->getFrontend()->getValue($_product);
}
答案 1 :(得分:0)
通过$_product->getAttributes()
http://docs.magentocommerce.com/Mage_Catalog/Mage_Catalog_Model_Product.html#getAttributes