MyBB Community Forums

Full Version: How to add custom Quick Navigation Links With The Theme TheCure
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When using the Theme TheCure there is a box on the bottom saying Quick Navigation and i Wish to add custom links there please help
I believe you have to edit the footer template for that.
Go to AdminCP -> Templates and Styles -> Templates -> *expand template set* -> Footer Templates -> footer

Find this code:
<h2>Quick Navigation</h2>
		<ul>
			<li><a href="{$mybb->settings['homeurl']}" class="bot_home">{$mybb->settings['homename']}</a></li>
			<li><a href="{$mybb->settings['contactlink']}" class="bot_contact">{$lang->bottomlinks_contactus}</a></li>
			<li><a href="<archive_url>" class="bot_archive">{$lang->bottomlinks_litemode}</a></li>
			<li><a href="{$mybb->settings['bburl']}/misc.php?action=syndication" class="bot_rss">{$lang->bottomlinks_syndication}</a></li>
		</ul>
Underneath the code for RSS Syndication, add the following:
<li><a href="URL OF WHERE YOU WANT YOUR LINK TO GO TO HERE">DISPLAYING TEXT</a></li>

Save the template Smile

Note, don't actually add the bit in capital letters: you replace the caps lock text with the necessary info Smile
Thank you so much