Magento Coding Solutions

Get product attribute label & value in Magento


$_product->getData('attribute_code')
AND 
if you need label of the product attribute
$_product->getAttributeText('attribute_code')
or 
$_product->getResource()->getAttribute('attribute_code')->getFrontend()->getValue($_product);

No comments:

Post a Comment