dbg Posted May 1, 2014 Share Posted May 1, 2014 Hi I'm trying to configure the PS 1.6x RSS products feed. Does the RSS feed have to be linked to products in the 'Home' category only, to show up on the feed? I think as I don't have any products in the 'Home' category (as they are all sub categories), nothing is showing at all in the RSS feed? I've tried this http://www.prestashop.com/forums/topic/326743-ps-16-new-products-rss-feed/ but still nothing. All I really want is New products (that are not in the 'Home' category) to show). Many thanks dbg Link to comment Share on other sites More sharing options...
vekia Posted May 1, 2014 Share Posted May 1, 2014 in rss.php file you can change $products = Product::getProducts((int)Context::getContext()->language->id, 0, ($number > 10 ? 10 : $number), $orderBy, $orderWay, $id_category, true); to $products = Product::getNewProducts((int)Context::getContext()->language->id, 0, ($number > 10 ? 10 : $number), false, $orderBy, $orderWay); 1 Link to comment Share on other sites More sharing options...
dbg Posted May 1, 2014 Author Share Posted May 1, 2014 Worked perfectly. That's exactly what I'm trying to do. Many thanks for your help Vekia. Link to comment Share on other sites More sharing options...
vekia Posted May 1, 2014 Share Posted May 1, 2014 you're welcome glad to hear that i could help you a little im going to mark this topic as solved. with regards, Milos Link to comment Share on other sites More sharing options...
Recommended Posts