Quote:
Originally Posted by Lynne
You don't use $mymenu anymore - you need to use the new syntax. The new syntax is {vb:raw mymenu} . Check the functions.php page where the navbar is rendered and make sure your hook is located *before* that.
|
Thanks,
You would think the hook should be navbits_complete, if I am reading this correctly.
PHP Code:
($hook = vBulletinHook::fetch_hook('navbits_complete')) ? eval($hook) : false;
return $code;
}
/**
* Renders the navbar template with the specified navbits
*
* @param array Array of navbit information
*
* @return string Navbar HTML
*/
function render_navbar_template($navbits)
{
global $vbulletin;
$templater = vB_Template::create('navbar');
// Resolve the root segment
$templater->register('bbmenu', $vbulletin->options['bbmenu']);
$templater->register('ad_location', $GLOBALS['ad_location']);
$templater->register('foruminfo', $GLOBALS['foruminfo']);
$templater->register('navbar_reloadurl', $GLOBALS['navbar_reloadurl']);
$templater->register('navbits', $navbits);
$templater->register('notices', $GLOBALS['notices']);
$templater->register('notifications_menubits', $GLOBALS['notifications_menubits']);
$templater->register('notifications_total', $GLOBALS['notifications_total']);
$templater->register('pmbox', $GLOBALS['pmbox']);
$templater->register('return_link', $GLOBALS['return_link']);
$templater->register('template_hook', $GLOBALS['template_hook']);
return $templater->render();
}
I'm missing something simple.