OK I fixed this ..... Add
on a template where you want it then in Plugins Forumhome_start change ...
PHP Code:
//adds location to forumhome template
$vbulletin->templatecache['FORUMHOME'] = str_replace(
'$navbar',
'$navbar $latest',
$vbulletin->templatecache['FORUMHOME']
);
}
to
PHP Code:
//adds location to forumhome template
$vbulletin->templatecache['FORUMHOME'] = str_replace(
'$latest',
'$latest',
$vbulletin->templatecache['FORUMHOME']
);
}