tags:

views:

38

answers:

1

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?

+1  A: 

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(); ?>
Joseph Mastey
this works but it needs to be $_product instead of $product
a1anm