
05-18-2011, 08:01 PM
|
 |
|
|
Join Date: Nov 2010
Posts: 969
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by KaneR
I've installed this and it's working fine except for one problem. In the users profile, the tab has no background when it's inactive. Like this...
<snipped images>
Does anybody know how I can fix this?
Thanks
|
Quote:
Originally Posted by Zighinno
Same problem 
|
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
);
|
Here's my fix for the issue from a few pages back.
|