1) Where exactly?
2) Edit template postbit
3) You mean the sort order in forumdisplay?
Either install one of the hacks that allows you to specify sort column and order for each forum, -- OR --
In forumdisplay.php FIND
PHP Code:
// look at sorting options:
if ($sortorder != 'asc')
{
$sqlsortorder = 'DESC';
$order = array('desc' => HTML_SELECTED);
}
else
{
$sqlsortorder = '';
$order = array('asc' => HTML_SELECTED);
}
REPLACE that with
PHP Code:
// look at sorting options:
if ($sortorder != 'desc')
{
$sqlsortorder = 'ASC';
$order = array('asc' => HTML_SELECTED);
}
else
{
$sqlsortorder = '';
$order = array('desc' => HTML_SELECTED);
}