Quote Originally Posted by a_berezin View Post
Grace38,

/includes/pages/rss_feed/header_php.php
line ~516
Replace
PHP Code:
date('r'strtotime($products->fields['products_date'])), 
by
PHP Code:
false
So, code must be:

PHP Code:
      $rss->rss_feed_item($products->fields['products_name'],
                          
$link,
                          array(
'url' => $link'PermaLink' => true),
                          
false,
                          
$products_description,
                          
$rss->_clear_url($products->fields['products_image']),
                          
zen_href_link(FILENAME_PRODUCT_REVIEWS,'products_id=' $products->fields['products_id'] . $additionalURL'NONSSL'false),
                          (
RSS_AUTHOR == ''STORE_OWNER_EMAIL_ADDRESS " <" STORE_OWNER ">" RSS_AUTHOR),
                          
false,
                          
false,
                          
$xtags
                          
); 
Thank you very much that works and gives me todays date instead of the date a product was added which is perfect and what i want.

I only just popped in today and saw your reply otherwise i would have did this sooner and thanked you sooner.

Much appreciated.