Quote:
Originally Posted by RobbieZ
This is because the mod was written for a 4.0.2 board and barely anything above, vb changed the way the tabs are displayed and called and this is why the mod breaks as the original php was using 4.0.2 syntax.
Your 2nd problem will only be solved when the coder updates the mod for the latest version of vb.
|
Here's a fix that fixes both issues:
1) Disable/delete the
YAAS - Profile Tab Plugin that is attached to the member_complete hook (in other words my previous fix for problem 1 is not required anymore). If this isn't done you will get two Awards tabs on profile pages.
2) Make the following edits (all text in blue needs to be added) to the
YAAS in Member Profile - Profile plugin that is attached to the member_build_blocks_start hook:
Code:
$blocklist['myawards'] = array(
'class' => 'MyAwards',
'title' => $vbphrase['awards'],
'options' => array(
'pagenumber' => $vbulletin->GPC['pagenumber']
),
'hook_location' => 'profile_tabs_last',
'wrap' => false
);