Installed and working fine except for the links in the postbit did not link directly to the "My Awards" tab in the member profile. Here is the fix:
In member.php
find:
Code:
'contactinfo' => array(
'class' => 'ContactInfo',
'title' => $vbphrase['contact_info'],
),
Below that
add the following:
Code:
'myawards' => array(
'class' => 'MyAwards',
'title' => $vbphrase['my_awards'],
),
NOTE: It appears the coder is trying to do this with the plugin "YAAS in Member Profile - Profile", but it doesn't seem to be working.
Then,
replace the entire awards_postbit_display template with:
Code:
<!-- show awards -->
<if condition="$post[showuserawards]">
<br />
<fieldset><legend><a href="member.php?u=$post[userid]&tab=myawards" title="$vbphrase[more_awards]">$vbphrase[award_showcase]</a></legend>
<div>
$post[userawards]
<br>
<a href="member.php?u=$post[userid]&tab=myawards" title="$vbphrase[more_awards]">$vbphrase[total_awards]</a>: $post[num_awards]
</div>
</fieldset>
</if>
<!-- /show awards -->
For anyone who has edited this template, all you need to do is replace the "#award" appended on the links with "&tab=myawards".
Hope that helps!