将产品的自定义属性显示到主页或静态页面
Show Product's Custom Attributes to Homepage or static page
我想 echo
自定义属性到任何其他页面,Product Page
或 Category Listing
除外
在几乎所有页面中获取自定义属性的一种方法如下(在 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;
我想 echo
自定义属性到任何其他页面,Product Page
或 Category Listing
在几乎所有页面中获取自定义属性的一种方法如下(在 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;