Woo hoo!
I was digging around in the vBa CMPS forums and found the solution to the problem of this menu not working from their pages.
Go to Admin CP => vBa CMPS => Default Settings => Portal Output Global Variables
Add the word 'navbarforum' (without the quotes) to that setting. That just gets the drop down working.
Then, to make the links work -
In the plug in you created find the two instances of 'forumdisplay.php' and add the full url before.
This means change this:
$navbarforum .= "<tr><td class=\"vbmenu_option\"><a href=\"forumdisplay.php?f=".$navforumid."\" rel=\"nofollow\">".$navforumtitle."</a></td></tr>";
to this in two places.
$navbarforum .= "<tr><td class=\"vbmenu_option\"><a href=\"http://yourwebsite/forum/forumdisplay.php?f=".$navforumid."\" rel=\"nofollow\">".$navforumtitle."</a></td></tr>";
|