Well, I would if I still had it. I got rid of it after I uninstalled it, sorry. But I can give you the outline code for it if that will help.
Make a template called: user_links
and add this but with your links added:
Code:
<li class="popupmenu">
<a href="javascript://" class="popupctrl">Your drop down menu name</a>
<ul class="popupbody popuphover">
<li>some link here</a></li>
<li>some link here</a></li>
<li>some link here</a></li>
<li>some link here</a></li>
</ul>
</li>
Then add a plugin to the
parse_templates hook with the following code:
Code:
$newTemplate = vB_Template::create('user_links');
$template_hook[navbar_after_faq] .= $newTemplate->render();
And another plugin to the
cache_templates hook with the following code:
Code:
$cache[] = 'user_links';