Quote:
Originally Posted by jpbryan
Thank you DS, but being a little new to this, I really can't get anything out of the link.. Not sure how to find the files/hooks/navs!!?? And, if I found them, what to do with them.. So many variables..
Any other suggestions??
|
I was playing around with it.. this is what i came up with..
Login to your Admincp.
Goto
Plugins & Products -->
Plugin Manager --> P
roduct : vBExperience --> edit the First one of these. vBExperience (links)]
Change
Hook Location From process_templates_complete To
build_navigation_array
Replace The Code With this.
Code:
if (vB::$vbulletin->options['xperience_enabled'] == 1)
{
$link1 = array(
'name' => 'top_link_cm',
'navtype' => 'link',
'url' => '{options.toppath}xperience.php{vb:raw session.sessionurl_q}',
'active' => 1,
'productid' => 'xperience40',
'text' => $vbphrase['xperience_vbnav'],
);
$result['vbtab_forum']['links']['vbmenu_community']['links']['top_link_cm'] = $link1;
}
else if (vB::$vbulletin->options['xperience_enabled'] == 2)
{
$link2 = array(
'name' => 'top_link_ql',
'navtype' => 'link',
'url' => '{options.toppath}xperience.php{vb:raw session.sessionurl_q}',
'active' => 1,
'productid' => 'xperience40',
'text' => $vbphrase['xperience_vbnav'],
);
$result['vbtab_forum']['links']['vbmenu_qlinks']['links']['top_link_ql'] = $link2;
}
PS.
It will only Show up under the Community Menu. Best I can do for now..