MyBB Community Forums

Full Version: Hide author for guest
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!

I'm looking for to hide the author of threads on index for guest.
Like this: http://puu.sh/3aF8f.png
You can see all authors are the same, but when you login they aren't the same.

I've been looking on forums without luck.

Thanks in advance! Cool
1. Get Template Conditionals plugin http://mybbhacks.zingaburga.com/showthread.php?tid=464 (tplcond-1.7.7z)
2. Upload, activate it
3. In forumbit_depth2_forum_lastpost template change:
{$lastpost_profilelink}
To:
<if $mybb->user['uid'] then>
{$lastpost_profilelink}
<else>
Your different last poster
</if>
Thanks a lot! Worked perfect!