I got it to work with 2.26.
I had one problem, though - I had to modify forumdisplay.php
Find:
PHP Code:
switch ($sortfield) {
Now, the fields you want to be able to sort on should be added below that line...For example, I wanted to sort on threadid (making the forum display the threads in the order which they were posted), so I added the following line:
PHP Code:
case 'threadid':
I also made a template modification to allow everyone to sort on threadid...I modified this template:
forumdisplay_threadslist
Find:
PHP Code:
<option value="title" $sort[title]>thread title</option>
Add below:
PHP Code:
<option value="threadid" $sort[threadid]>thread post time</option>
Okay, that should be it. A small improvement...hope it helps someone :nervous: