|
Until something like the singlefeed feature is available (http://www.magentocommerce.com/boards/viewthread/5482/), I would like to customize the Product RSS feed to include additional attributes and have more control over the XML produced.
I see there are some attributes defined in this file:
\app\code\core\Mage\Rss\Block\Catalog\Category.php
Would I only need to add my attributes here:
$data = array( 'title' => $_product->getName(), 'link' => $_product->getProductUrl(), 'description' => $description, );
or do I need to edit additional files? I’m afraid to muck about in these and was hoping someone might have experience doing this.
Thanks!
|