MyBB Community Forums

Full Version: Redirect to first post rather than last post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do I get users redirect to first post of a thread rather than last post from index page.
Search in inc/functions_forumlist.php

$lastpost_link = get_thread_link($lastpost_data['lastposttid'], 0, "lastpost");

Replace with:

$lastpost_link = get_thread_link($lastpost_data['lastposttid']);
(2019-01-20, 11:02 PM)Mipher Wrote: [ -> ]Search in inc/functions_forumlist.php

$lastpost_link = get_thread_link($lastpost_data['lastposttid'], 0, "lastpost");

Replace with:

$lastpost_link = get_thread_link($lastpost_data['lastposttid']);

Thank You!
Working!!!