I've installed it and it works great but the last part, the optional one in the forumhome_lastpostby template doesn't seem to work. Whenever people click on the little arrow in order to get to the last post, they get a message 'No Thread specified. If you followed a valid link, please notify the administrator.'
I know, I could just leave this but I love the way it looks and thought I'd ask since I have no idea what I'm doing and don't wanna mess up the whole template.
Ah well, I ended up messing around myself and here's the code that managed to fix my problem:
Code:
<table cellpadding="0" cellspacing="0" border="0" width="175"><tr align="$stylevar[right]">
<td nowrap="nowrap"><span class="smallfont">
<a href="showthread.php?$session[sessionurl]goto=newpost&t=$lastpostinfo[lastthreadid]" title="Go to first unread post in thread '$lastpostinfo[lastthread]'"><b>$lastpostinfo[trimthread]</b></a><br />
Poster: <a href="member.php?$session[sessionurl]find=lastposter&f=$lastpostinfo[forumid]">$lastpostinfo[lastposter]</a><br />
$lastpostinfo[lastpostdate]
<if condition="$vboptions['yestoday'] != 2">
<span class="time">$lastpostinfo[lastposttime]</span>
</if>
</span></td>
<td nowrap="nowrap"> <a href="showthread.php?$session[sessionurl]p=$lastpostinfo[lastpostid]"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a></td>
</tr></table>
All I did was changing the link and url of the 'Go to last post' arrow.