Quote:
Originally Posted by btappan
Ocean, thanks for the reply
thats what i was getting at. do you know how i might modify the search.php file to make the default sort by creation date?
|
1. In the "Search.php" file, find:
PHP Code:
'sortby' => 'lastpost',
2. Change it to this:
PHP Code:
'sortby' => 'threadstart',
3. Now, Find:
PHP Code:
$sortby = 'lastpost';
4. And change that to this:
PHP Code:
$sortby = 'threadstart';
That should do it!