Magento - 产品页面上的Echo属性

时间:2010-06-24 12:54:24

标签: magento

在我的Magento商店中,我创建了一个属性代码为'brand_info'的新属性。

如何将此属性的内容回显/打印到产品页面上,即。在描述之下?

4 个答案:

答案 0 :(得分:11)

要在产品页面上显示属性的内容,您需要在view.phtml文件中添加以下代码。

$_product->getResource()->getAttribute('brand_info')->getFrontend()->getValue($_product);

答案 1 :(得分:7)

确保该属性标记为“在前端使用”,然后在模板名称中写下以下要查看属性的位置:

<?php print $_product->getBrandInfo(); ?>

答案 2 :(得分:5)

将以下代码添加到您的catalog/product/view.phtmlcatalog/product/list.html模板文件中:

echo $_product->getAttributeText('your_attribute_code');

只需使用您的属性代码更改your_attribute_code即可。

答案 3 :(得分:1)

我发现添加到view.phtml对我来说是最好的

print $_product[brand_info];