I noticed that some people are having problems with the Notifications menu links for vBExperience 3.85
The links end up pointing to
http://www.mysite.com/member.php...
Instead of
http://www.mysite.com/forums/member.php...
I fixed this for my forums and thought I would share how to fix it.
1. First, if you already have vBExperience installed, uninstall it.
2. Open up "product_vbexperience385.xml" in a text editor.
3. Make the following changes:
Find:
HTML Code:
$notifications['xperience_achievementcount'] = array(
'phrase' => $vbphrase['xperience_achievements_notifications'],
'link' => $vboptions[bburl].'/member.php?' . $vbulletin->session->vars['sessionurl'] . 'u='.$vbulletin->userinfo['userid'].'&do=achievements#xpa',
'order' => 150
);
$notifications['xperience_awardcount'] = array(
'phrase' => $vbphrase['xperience_awards_notifications'],
'link' => $vboptions[bburl].'/member.php?' . $vbulletin->session->vars['sessionurl'] . 'u='.$vbulletin->userinfo['userid'].'&do=awards#xpa',
'order' => 151
);
$notifications['xperience_promotioncount'] = array(
'phrase' => $vbphrase['xperience_promotions_notifications'],
'link' => $vboptions[bburl].'/member.php?' . $vbulletin->session->vars['sessionurl'] . 'u='.$vbulletin->userinfo['userid'].'&do=promotions#xpa',
'order' => 152
);
Replace with:
HTML Code:
$notifications['xperience_achievementcount'] = array(
'phrase' => $vbphrase['xperience_achievements_notifications'],
'link' => $vboptions[bburl].'member.php?' . $vbulletin->session->vars['sessionurl'] . 'u='.$vbulletin->userinfo['userid'].'&do=achievements#xpa',
'order' => 150
);
$notifications['xperience_awardcount'] = array(
'phrase' => $vbphrase['xperience_awards_notifications'],
'link' => $vboptions[bburl].'member.php?' . $vbulletin->session->vars['sessionurl'] . 'u='.$vbulletin->userinfo['userid'].'&do=awards#xpa',
'order' => 151
);
$notifications['xperience_promotioncount'] = array(
'phrase' => $vbphrase['xperience_promotions_notifications'],
'link' => $vboptions[bburl].'member.php?' . $vbulletin->session->vars['sessionurl'] . 'u='.$vbulletin->userinfo['userid'].'&do=promotions#xpa',
'order' => 152
);
4. Save the XML file and install vBExperience using it.
The links in the Notifications menu should now be fixed.