If I could just get some understanding of how the code gets the forum ordering from the database and then uses it to display the main page, I'd be half way there.
In vb2 it was the "displayorder" field in the forum table, which is still there. But the only reference I can find to that in the code seemingly isn't used any more
Well I've finally figured it out..
I did it by going into the construct_forum_bit function and putting this in
Code:
foreach ($vbulletin->iforumcache["$parentid"] AS $forumid)
{
if($userStyle == 13) // If we are on rallyforum then swap the sections over
{
if($forumid == 118) {
$forumid = 120;
} else {
if($forumid == 120) {
$forumid = 118;
}
}
} // end if rallyforum
etc...