在产品视图中显示属性

时间:2015-04-21 14:58:29

标签: magento view attributes

我创建了一个包含字符串的自定义属性。现在,我想在产品视图页面上显示它,所以我尝试编辑view.phtml文件。

<?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?>

我尝试做类似的事情,因为这个名字也只是一个属性,但我不知道该怎么做。

谢谢!

2 个答案:

答案 0 :(得分:1)

<?php echo $_product->getResource()->getAttribute('manufacturer')->getFrontend()->getValue($_product); ?>

只需将“制造商”替换为您的属性代码

即可

此代码适用于view.phtml

答案 1 :(得分:1)

请试试这个。希望这对你有用。

&#13;
&#13;
   
$attribute = $_product->getResource()->getAttribute('CustomAttributeCode');
if ($attribute)
{
    echo $attribute_value = $attribute ->getFrontend()->getValue($_product);
}
&#13;
&#13;
&#13;