MyBB Community Forums

Full Version: Arcade Section
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I just added the arcade plugin, but the link doesn't show up on the top on the theme I'm using (afresh midnight).. does anyone know how I can add the link on there?
Thanks! Blush
Go to the AdminCP >> Templates & Style >> Templates >> Afresh Midnight >> Header Templates >> header_welcomeblock_member

On line 2, find:
<span class="float_right">

Add after:
<a href="{$mybb->settings['bburl']}/*ARCADE HOMEPAGE*">Arcade</a>

If it's Game Section mod that you've got installed you can use this instead to include an image like the other links:
<a href="{$mybb->settings['bburl']}/games.php"><img src="{$mybb->settings['bburl']}/games/images/games.png"> Arcade</a>

But change *ARCADE LOCATION* to your actual arcade homepage (probably arcade.php or games.php)
(2009-12-12, 03:32 AM)AJS Wrote: [ -> ]Go to the AdminCP >> Templates & Style >> Templates >> Afresh Midnight >> Header Templates >> header_welcomeblock_member

On line 2, find:
<span class="float_right">

Add after:
<a href="{$mybb->settings['bburl']}/*ARCADE HOMEPAGE*">Arcade</a>

If it's Game Section mod that you've got installed you can use this instead to include an image like the other links:
<a href="{$mybb->settings['bburl']}/games.php"><img src="{$mybb->settings['bburl']}/games/images/games.png"> Arcade</a>

But change *ARCADE LOCATION* to your actual arcade homepage (probably arcade.php or games.php)


Thank you so much AJS! I really appreciate it!