MyBB Community Forums

Full Version: In forumdisplay go to newpost, if has newpost as in xenforo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Personally it is something easy to implement, and is also useful.

only need change in forumdisplay.php

Find:
$thread['threadlink'] = get_thread_link($thread['tid']);

Replace:

		if($thread['lastpost'] > $last_read && $moved[0] != "moved")
		{
		$thread['threadlink'] = get_thread_link($thread['tid'], 0, "newpost");
		}
		else
		{
		$thread['threadlink'] = get_thread_link($thread['tid']);
		}	


If you think you have people complaining about it, just create option in the ACP, and it is not something hard to do too.
Unless it changed from the 1.6 series, there is an arrow before the thread title that takes you to the first new post.