Great skin! I'm having a few problems editing the nav bar, when I do add my codes it messes up everything these are the ones I'm trying to get working.
Code:
In 'navbar' template:
FIND:
-----------------------------------------------------------
<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
-----------------------------------------------------------
BELOW ADD:
-----------------------------------------------------------
<td class="vbmenu_control"><a href="search.php?do=finduser&u=$bbuserinfo[userid]" accesskey="2">My Posts</a> <span id="navbar_myposts"><script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span></td>
-----------------------------------------------------------
FIND:
-----------------------------------------------------------
</if>
<!-- / NAVBAR POPUP MENUS -->
-----------------------------------------------------------
ABOVE ADD:
-----------------------------------------------------------
<!-- My Posts Menu -->
<div class="vbmenu_popup" id="navbar_myposts_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">My Posts</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td>
</tr>
</table>
</div>
<!-- / My Posts Menu -->
Code:
Put this where you would like it to appear on your navbar/header
$dsl_link_menu
Find NAVBAR POPUP MENUS in header/navbar template and add this below it:
$dsl_link_menu_options
Any ideas how to make them work?