MyBB Community Forums

Full Version: Closed threads move to the last page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well i searched a lot here but i was not able to find this exactly .. 

Is there a way or extend mod for moving the closed thread to the last page .. 

This definitely helps the forum to look a lot cleaner ...
It would require a plugin to do this. Most likely you would hook to forumdisplay_get_threads. The query would need to be similar to this:

SELECT t.*, u.* FROM mybb_threads t LEFT JOIN mybb_users u ON(t.uid=u.uid) ORDER BY t.closed DESC WHERE t.closed NOT LIKE 'moved|%' LIMIT 20

The other option you could do is create a separate forum just for locked threads and move all locked threads to there.