将产品的自定义属性显示到主页或静态页面

时间:2015-04-09 10:29:07

标签: magento custom-attributes

我希望echo将自定义属性添加到任何其他页面,Product PageCategory Listing

除外

1 个答案:

答案 0 :(得分:1)

在几乎任何页面中获取自定义属性的一种方法可以按照以下方式完成(在PHP中):

$product_id = $this->getProduct()->getId(); // note that this changes depending on how you load your product
$storeId = Mage::app()->getStore()->getStoreId();
$value = Mage::getResourceModel('catalog/product')->getAttributeRawValue($product_id, 'your_power_attribute_id', $storeId);
echo $value;