Add Arcade link in navbar?

Depends on where you want the link in your navbar and what style you are using. Open the admcp>style manager>edit default style>navbar template and find the location you want to add your link, maybe next to the memberlist in the default style.

Here is the example with using the memberlist code:

Code:
<if condition="$vboptions['enablememberlist']">
			<td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
		</if>
[color=Red]<td class="vbmenu_control"><a href="arcade.php">Arcade</a></td>[/color]

You add the arcade code right after the closing if tag.

HTH
 
If, for example, you wanted "Members Only" to use the arcade, you would use this code:

Code:
<if condition="$show['member']">
<td class="vbmenu_control"><a href="arcade.php">Arcade</a></td> 
</if>
 
Back
Top