我创建了一个包含字符串的自定义属性。现在,我想在产品视图页面上显示它,所以我尝试编辑view.phtml文件。
<?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?>
我尝试做类似的事情,因为这个名字也只是一个属性,但我不知道该怎么做。
谢谢!
答案 0 :(得分:1)
<?php echo $_product->getResource()->getAttribute('manufacturer')->getFrontend()->getValue($_product); ?>
只需将“制造商”替换为您的属性代码
即可此代码适用于view.phtml
答案 1 :(得分:1)
请试试这个。希望这对你有用。
$attribute = $_product->getResource()->getAttribute('CustomAttributeCode');
if ($attribute)
{
echo $attribute_value = $attribute ->getFrontend()->getValue($_product);
}
&#13;