I have recently done an import of a vbulletin forum into simple:press. Everything seems to be working except that the the order of the topics seems to be incorrect. It gives the most recent topic being one that is 2 months old, and there are many others that are newer. I have figured out the reason this occurs is because in the import the post_ids are not necessarily in order of date. This is not a problem for most things except for in the sp-list-topic-class.php file the order of the topics is determined by the following code:
$spdb->orderby = SFTOPICS.’.post_id DESC’;
I was wondering if there was a way to instead have the order be determined by the post_date information in the SFPOSTS table? If not is their a way to reorder the posts in order to get their ids to be sequential? Thanks.