MyBB Community Forums

Full Version: Last post link in Thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to get the 'Last post' Link from the Threadlist, in the Thread view too?
I'd like a link, just above the first post linking to the most recent reply.

Thanks in advance.
Add the following code in showthread page where you want link to appear;
<a href="{$mybb->settings['bburl']}/showthread.php?tid={$thread['tid']}&action=lastpost">Jump to the latest post</a>
That's exactly what I needed!
Thanks Yaldaram.