Magento – display product attributes in category list page

Magento - display product attributes in category list page

Say you've added 'brand' as an attribute and added it to the Default attribute set (make sure the attribute is visible in the frontend). Then add this:

From http://www.magentocommerce.com/boards/viewthread/19215/

<?php
echo $this->htmlEscape($_product->getData('brand'));        
?>

Leave a Reply