In my Magento store I have created a new attribute with an attribute code of 'brand_info'.
How can I echo/print the contents of this attribute onto a product page ie. below the description?
In my Magento store I have created a new attribute with an attribute code of 'brand_info'.
How can I echo/print the contents of this attribute onto a product page ie. below the description?
Make sure that the attribute is marked as "used in frontend", then in your template name write the following where you want to see the attribute:
<?php print $_product->getBrandInfo(); ?>