DISLEX
09-19-2008, 01:30 AM
So there's this hook under the navbar:
$template_hook[navbar_quick_links_menu_pos1]
I want to be able to use a plugin to add more to the menu, so I have less template modifications (that way I don't have to keep redoing templates every vBulletin update)
How can I manage that? Can I just have a plugin hooked on global_start, and then do
$template_hook[navbar_quick_links_menu_pos1] .= "<tr>etc</tr>";
?
$template_hook[navbar_quick_links_menu_pos1]
I want to be able to use a plugin to add more to the menu, so I have less template modifications (that way I don't have to keep redoing templates every vBulletin update)
How can I manage that? Can I just have a plugin hooked on global_start, and then do
$template_hook[navbar_quick_links_menu_pos1] .= "<tr>etc</tr>";
?