Quote:
Originally Posted by RMS-Chef
I installed this on another site that has the navbar moved to header in a style and it again did not work. But it did work on a child style that had the navbar still in the navbar template. Any help?
|
You moved the quick navbar
into the header template?
In that case, you need to edit global.php and move the section
PHP Code:
// Custom Quick Links
if ($bbuserinfo['customquicklinks'])
{
$cqlinks = unserialize($bbuserinfo['customquicklinks']);
$customquicklinks = '';
if ($cqlinks)
{
$show['customquicklinks'] = true;
foreach ($cqlinks AS $cqlink)
{
$cqlink = unserialize($cqlink);
eval('$customquicklinks .= "' . fetch_template('customquicklink') . '";');
}
}
}
a few lines higher, ABOVE this line:
PHP Code:
eval('$header = "' . fetch_template('header') . '";');