MyBB Community Forums

Full Version: Privacy policy link on Forum page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All,

I want to place privacy policy link at my forum. I would like to add it below strip where there are other links like below:


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


Or if there is any other way where i can place link to privacy policy of forum.
you can add it at the top links (header template) and the bottom links (footer template)
Templates >> Index Page Templates >> index_boardstats

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

and add this just before closing the span
<a href="privacy link">Privacy Policy</a>


but i prefer adding it to the footer menu,

Templates >> Footer Templates >> footer

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

and add this just before closing the span
 | <a href="privacy link">Privacy Policy</a>