In forumdisplay.php
Find:
PHP Code:
if ($sortorder != 'asc')
{
REPLACE it with:
PHP Code:
if ($sortorder != 'asc' AND $foruminfo['forumid'] != 'XX')
{
Find:
PHP Code:
default:
$sqlsortfield = 'lastpost';
$sortfield = 'lastpost';
}
REPLACE it with:
PHP Code:
default:
if ($foruminfo['forumid'] == 'XX'):
$sqlsortfield = 'thread.title';
$sortfield = 'thread.title';
else:
$sqlsortfield = 'lastpost';
$sortfield = 'lastpost';
endif;
}
That's how I have it set up to sort one of my forums.
Don't forget to replace XX with the forumid of the forum you want to default to alphabetical sorting.