Hello SMFHacks,
I have changed a bit of the code in Store2.template.php to let it order products by ID_ITEM DESC
find (line 79 in Store2.template.php)
ORDER BY i.itemorder DESC LIMIT $context[start]," . $modSettings['store_set_items_per_page']);
replace with
ORDER BY i.ID_ITEM DESC LIMIT $context[start]," . $modSettings['store_set_items_per_page']);
I don't know what itemorder does but it shuffles the items instead of the newest items in first place.
Thanks,
Vincent