I wrote something that you can add to the core product.
#############################################
Open: hooks_nex_points.xml
Find:
Above Add:
Code:
<hooktype type="nex_navbar">
<hook>nex_points_navbar_add_link</hook>
</hooktype>
#############################################
Add a new plugin for: parse_templates
Add this code
Code:
$nex_create_link = array();
($hook = vBulletinHook::fetch_hook('nex_points_navbar_add_link')) ? eval($hook) : false;
foreach($nex_create_link as $links)
{
$nex_navbar_links .= $links;
}
#############################################
In the "navbar" template
Find:
Code:
<if condition="$show['popups']">
After Add:
Code:
<if condition="!empty($nex_navbar_links)">
<td id="nexlinksmenu" class="vbmenu_control">
<a href="#">Nexia's Point System</a>
<script type="text/javascript">
vbmenu_register("nexlinksmenu");
</script>
</td>
</if>
Find:
Code:
<!-- NAVBAR POPUP MENUS -->
After Add:
Code:
<div class="vbmenu_popup" id="nexlinksmenu_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">Nexia's Point System</td>
</tr>
$nex_navbar_links
</table>
</div>
I'll show you how to write a custom link to be displayed in the drop down menu on my next post.