MyBB Community Forums

Full Version: Remove .tfoot links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'd like to remove the .tfoot links at the bottom of my page (with Logout | Mark All Forums Read, etc...). How do I go about doing this?
ACP > Templates > Your theme's templates > Index Templates > index_boardstats > and find the following and remove;
<tr>
	<td class="tfoot" style="text-align: right">
		<span class="smalltext">
			{$logoutlink}
			<a href="misc.php?action=markread{$post_code_string}">{$lang->markread}</a> |
			<a href="showteam.php">{$lang->forumteam}</a> |
			<a href="stats.php">{$lang->forumstats}</a>
		</span>
	</td>
</tr>
Ah, thank you very much Smile.