Quote:
Originally Posted by nul7
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!
|
Great Help, Thank You Very Much, Works Really Fine. :up::up:
I'd also like to Add that for the Postbit Icons of the Awards to Point Right inside the Tab, you should also Modify the "
awards_bit" Template Replacing the Current Code with the Following One (notice that I only Added a "
&tab=myawards" before "#aw_issue$award[issue_id]" and after "u=$award[userid]":
Code:
<a href="member.php?$session[sessionurl]u=$award[userid]&tab=myawards#aw_issue$award[issue_id]"><img src="$award[award_icon_url]" alt="$award[award_name]" border="0" /></a>
(All of This Thanks To Your Very Useful Indications). :up:
My Best Regards.