MyBB Community Forums

Full Version: Removal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I remove these links under board statistics?

"Log Out | Mark All Forums Read | Forum Team | Forum Statistics"

http://gyazo.com/33f921fb8c5080ec1596903c931d394d.png

Thanks in advance.
admin panel --> templates --> your current templates set --> index page templates -->
index_boardstats -->
find AND remove code similar to below & save the template
<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>
admin panel < templates < your current templates set < index page templates < index_boardstats


Remove this -

        <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>