Boofo,
You can try this code, but I did not test it.
Open forumdisplay.php
Find:
PHP Code:
default:
$sqlsortfield = 'lastpost';
$sortfield = 'lastpost';
Relace With:
PHP Code:
default:
if ( $foruminfo['forumid'] == $yourforumid ) :
$sqlsortfield = 'thread.title' ;
else :
$sqlsortfield = 'lastpost' ;
$sortfield = 'lastpost' ;
endif ;
replace the variable $yourforumid with forumid of the forum that you want to display it as the default. Hope this helps.
Cheers,
g-force2k2