
03-10-2011, 08:07 PM
|
|
|
Join Date: Apr 2010
Posts: 616
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by squidsk
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
);
|
Worked like a charm. Thank you. :up:
|