Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My Magento RSS feed is at http://www.crookedmonkey.com/rss/catalog/category/cid/3/store_id/1/

Apart from the Feeds displayed there i need following XML tags to be added to that feed

<price> <productid> ( SKU ) <url> <name> and <image>

Is this possible to change, where should i do those changes, which page, doest mangento allows it

Shall i add something to /public_html/app/design/frontend/MY Folder /default/layout/rss.xml

I changed category.php in /public_html/app/code/core/Mage/Rss/Block/Catalog TO

$data = array(
                'title'         => $product->getName(),
                'link'          => $product->getProductUrl(),
                'description'   => $description,
                'name'  => $product->getName(),
            );

but it doesnt show NAME xml TAG

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.