MyBB Community Forums

Full Version: Last post link on index doesn't seems to work
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Last post link on index page doesn't seems to work, i get:

"http://mysite.net/showthread.php?tid=&action=lastpost" (link looks like)

My Forum
404 Not Found
Other things to try:

Search mysite.net:

I have installed just Google Seo plugin, but i get this bug before installing google seo.

This is my forumbit_depth2_forum_lastpost:

<span class="smalltext">
<img src="{$theme['imgdir']}/post.png" alt="" style="vertical-align:middle"/> <a href="showthread.php?tid={$lastposttid}&amp;action=lastpost" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />
{$lang->by} {$lastpost_profilelink}</span><br />
<div align="right"><span class="smalltext">{$lastpost_date} {$lastpost_time}</span>

<a href="showthread.php?tid={$lastposttid}&amp;action=lastpost" title="{$full_lastpost_subject}"><img src="{$theme['imgdir']}/lastpost.png" alt="" style="vertical-align:middle"/></a></div>
I replaced with:
<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by} {$lastpost_profilelink}</span>

and it works .. thanks