I have a custom attribute in Magento for a grouped product minimum priced RRP. I want to be able to pull this through into the product grid within my theme, however, i cannot find whether this is possible or not. The attribute is simply called 'rrp'.
Originally i had this:
$_item = $this->getItem();
$_product= Mage::getSingleton('catalog/product')->load($_item->getProductId());
$rrp = $_product->getResource()->getAttribute('rrp')->getFrontend()->getValue($_product);
But if i go
<?php echo $rrp; ?>
it simply does not work.
Am i missing something?
Full code here for my 'featured grid' - http://pastebin.com/mn8BYvwA