These fixes are for 3.8.5 Beta 3 only!
-----------------------------------------------------
To fix the Achievements not displaying in profile if they are
Included in vBExperience, open the
member block plugin and find:
Code:
if ($vbulletin->options['xperience_use_awards'])
then add above
Code:
if ($vbulletin->options['xperience_use_achievements'])
{
if ($vbulletin->options['xperience_achievements_block'] == 0)
{
require_once(DIR . '/includes/functions_xperience.php');
$this->block_data['xperience_achievements'] = GetAchievements($this->profile->userinfo['xperience_achievements'], true);
}
}
To fix the
Recount Achievements feature, open
/includes/functions_xperience.php and find
Code:
$fielduser = str_replace("points", "count", $achievementsfields['field']);
Change to
Code:
$fielduser = $achievementsfields['field'];
To fix the syntax error in
member.php, open the plugin
cache_templates and find
Code:
if (THIS_SCRIPT === member)
Change to
Code:
if (THIS_SCRIPT === 'member')
Missing phrases:
xperience_achievements_empty
xperience_achievements_list
The following change is not a bug, but a feature addition.
Please do not contact Phalynx for support if you have performed this change.
Please do not contact me either, because I'm only sharing this because I can.
To let users see detailed Experience gains in their profile, open the template
xperience_memberinfo_activities and find:
Code:
<li><span class="shade"><a href="xperience.php?go=activities">$vbphrase[xperience_activities_all]</a></span></li>
Above or below add:
Code:
<li><span class="shade"><a href="member.php?$session[sessionurl]u=$prepared[userid]&do=points#xpa">$vbphrase[xperience_activities_points]</a></span></li>