在产品视图中显示属性

Show attribute in product view

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

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

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

谢谢!

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

只需将 "manufacturer" 替换为您的属性代码

此代码将适用于 view.phtml

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

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