I would like to display related products with more details (some custom attributes) on the product details page. Right now I’m stuck with the getAttributes() method which results in a blank page.
This is the code I’m using in template/catalog/product/list/related.html:
On product datails page, attributes are loaded by using the getAdditionalData() method. But this only uses the current product from registry.
Now I’m wondering if I would have to extend the Mage_Catalog_Block_Product_View_Attributes to make this method available for other products than the current or if there is a simpler way I didn’t think of.
I’ve tried it with getData method and yes I get the attribute id. But I’m looking for the value, not just the entity. I guess I have to go with the class extension…