Magento 1.9 – Fix Product Attribute Not Showing on Front End

magento-1.9

I have been trying to get an option to appear, on the front end. I can see the attribute in the back end of Magento. It is a text field I have entered some default values in to the text field and saved it.

I have reindex the site and flushed the cache, and cleared my browser cache, but I cannot see my new attributes.

Best Answer

You have to print the attribute in the .phtml file ( for example:

$product->getData('attribute_code') or $product->getAttributeCode() )

Related Topic