MyBB Community Forums

Full Version: How do I remove footer links to my own site?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi! I have a new isntallation of mybb. I don't want to delete the mybb footer (that can be deleted by modifying the footer template). I don't want to do that.

I want to remove the links from the very bottom: Contact us, return to top, return to content, lite archive mode, etc.

How can I do that? Thanks!
Alter the footer template and simply remove those links.
Either delete or comment out.

Templates & Style > Footer Templates > Footer

<div>
<span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>
</div>
Oh, I see. It was there all along, I just didn't see it because of the formatting. Thanks guys, problem solved!