Quote:
Originally Posted by Dorothy PCNC
Hi Victor,
I've read through this whole thread and it seems I am having the same problems as some fo the others. When I first installed this mod, the new category showed up and I have some new products on my home page. Great I think....but I have since added new products and they are not registering on neither the New category page nor the home page. I am not using the bubble portion of the mod. I have already tried changing the days of the new products but that did nothing.
Can you help please? Thanks for the mod and the support.
Regard, Dorothy
printcutncreate.com
|
As I see from your Whats New category all its products added 21.09.2009 but these products are sorted in the reverse order and no pagination is available.
probably the last products are on the next pages
try this
in your
products.php after the lines:
//+ + What's new
if ($active_modules["Whats_New"] && $WhatsNew == "Y"){
include "./modules/Whats_New/products.php";
}
//- - What's new
include $xcart_dir."/include/search.php";
add:
if ($active_modules["Whats_New"] && $WhatsNew == "Y"){
$products = array_reverse($products);
}