For some reason, this messes up my quicklinks, it only shows about half the options in my quicklinks instead of many when i disable zoints.
Code:
if (empty($vbulletin->options['zointsprofile_zurl']))
{
$vbulletin->options['zointsprofile_zurl'] = $vbulletin->options['bburl'] . '/z/';
}
else if (!preg_match("#/$#",$vbulletin->options['zointsprofile_zurl']))
{
$vbulletin->options['zointsprofile_zurl'] .= '/';
}
if (VB_AREA == 'Zoints')
{
$show['quickchooser'] = false;
$show['languagechooser'] = false;
}
if($vbulletin->options['zointsprofile_on'] AND $vbulletin->options['zointsprofile_autotemplate'])
{
#Add Zoints Drop Down
eval('$template_hook[\'navbar_buttons_left\'] .= "' . fetch_template('zointsprofile_popup_navbar') . '";');
eval('$template_hook[\'navbar_quick_links_menu_pos3\'] .= "' . fetch_template('zointsprofile_popup') . '";');
Somewhere in here messes up my quicklinks, though i know where, just don;t know how to remove it correctly without messing up something.
EDIT: Was able to remove the correct code to get my quicklinks to the way they are supposed to be, i have 2 templates that have the quicklinks code in them which confused the template hooking i guess.