A couple of quick tips, maybe someone can update the contrib if they have the time...
TIP #1 If you want your products to automatically be added to the feed when you create a new product instead of having to remember to check the feed box in admin change in admin/categories.php
Under the section:
if ($action == 'new_product') {
CHANGE
'products_to_rss' => '',
TO
'products_to_rss' => '1',
TIP #2 As mentioned somewhere earlier in forum somewhere oscommerce is adding the osCsid to the product URLs, bad news! To remove:
ADD
$link = substr($link, 0, strlen($link)-strlen(strstr($link,'&osCsid')));
UNDER
$link = tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $id, 'NONSSL', false);
In your catalog/rss feed file .php (filename may vary per language)
Edited by homewetbar, 06 February 2008, 20:45.