Would you like to have the "Tags" menu option appear under the quick links menu instead of in the main navbar? My navbar is too crowded, so I don't want tags appearing there.
Simply apply this fix:
Code:
In AdminCP -> Plugins & Products -> Plugin Manager -> Click on:
Product: Zoints Thread Tags (automatic template edits)
-- FIND --
$vbulletin->templatecache['navbar'] = str_replace($_alt_find, $_add . $_alt_find, $vbulletin->templatecache['navbar']);
-- REPLACE WITH --
$vbulletin->templatecache['navbar'] = str_replace('$vbphrase[miscellaneous]</td></tr>','$vbphrase[miscellaneous]</td></tr>'.'<tr><td class=\"vbmenu_option\"><a href=\"'.$vbulletin->options['bburl'].'/tags\">'.$vbphrase[zointstags_tags].'</a></td></tr>', $vbulletin->templatecache['navbar']);
Works fine on my system - if it doesn't work on yours - sorry!