Log in

View Full Version : Force Forumdisplay Sort Order


bitwise2000
10-13-2011, 01:56 PM
I need to force the thread sort order (i.e. override user selection) for a couple forums to Thread Start Time, Descending. I'd also like to remove the user's ability to change the sort order for those forums.

What is the best way to accomplish this?

Thanks

Lynne
10-13-2011, 03:20 PM
hook - forumdisplay start:
$_REQUEST['sortfield'] = 'dateline';
$_REQUEST['sortorder'] = 'desc';That will force it no matter what the user selects. You may add a condition around that to only show on certain forums. Check out the article on conditions.

bitwise2000
10-13-2011, 07:07 PM
Thank you, Lynne.

--------------- Added 1318538968 at 1318538968 ---------------

I understand a bit better what I'm trying to do, so let me restate.

I only want threads to be bumped by the OP in selected forums. Followups by others should not. We have a classifieds forum where many people comment on for-sale posts, which causes unnecessary bumping of the thread when the sort is Last Post Time. We still want to enable the OP to bump their own thread.

I envision two solutions;

(1) not update the lastpost field in the thread table when a post is made unless that post is made by the thread starter.

(2) Manipulate the query in forumdisplay that generates the recordset for thread display, substituting the time of last post by the OP for lastpost from the thread table. That requires a subquery into the post table for each threadid to be displayed.

As long as I'm willing to mess up the data integrity for a couple forums, this seems like the easier solution.

Anyone done something similar? Got a tip or two?