Quote:
Hi, when i add new product , i dont see that product on new products area , how can i fix that problem ?
|
Hi Ilter, it's because you are using the demo products and the 'date added' field for all demo products is set far into the future.
Specifically - Tue, 19 Jan 2038 03:14:07 GMT (!)
You can remedy by using this SQL patch...
Code:
UPDATE xcart_products SET add_date = 1309478400;
Subsequent new products should display fine.