Magento: how to display a certain attribute?
Posted by admin in Magento
Here is how you can display certain attribute on product page. In my case I needed to display cost price:
<?php echo $_helper->productAttribute($_product, $this->htmlEscape($_product->getCost()), ‘cost’) ?>
Or use this for your custom attributes:
<?php echo $_helper->productAttribute($_product, $this->htmlEscape($_product->getCustom()), ‘Custom’) ?>



You can also try and use:
THANK YOU!