MyBB Community Forums

Full Version: Last post - removing thread name/link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
#1 Can I somehow remove Thread name/link from last post table? I would love to have only Author + Date, without thread name.

#2 How to center it? Its aligned to right by default and Id like to have it on the middle.

Any ideas?
#1. Remove the link from your forumbit_depth1_forum_lastpost template and forumbit_depth2_forum_lastpost templates:

<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>

#2. Edit your forumbit_depth2_forum and forumbit_depth2_cat templates:

<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>

Change "right" to "center"
Thanks, worked great!