Quote:
Originally Posted by Abe1
Maybe if you play around with the template.
|
I've added a 'Thanked' column to my Members List page so it's easy to check who's been thanked the most. If anyone else is interested, here's what I did.
Open memberlist.php and find:
Code:
case 'posts':
$sqlsort = 'user.posts';
break;
after, add:
Code:
case 'thanked':
$sqlsort = 'user.post_thanks_thanked_posts';
break;
Edit the memberlist template and find:
Code:
<if condition="$show['postscol']"><td class="thead" nowrap="nowrap"><a href="$sorturl&order=DESC&sort=posts&pp=$perpage$usergrouplink">$vbphrase[posts]</a> $sortarrow[posts]</td></if>
after, add:
Code:
<td class="thead" nowrap="nowrap"><a href="$sorturl&order=DESC&sort=posts&pp=$perpage$usergrouplink">Thanked</a> $sortarrow[thanked]</td>
Edit the memberlist_resultsbit template and find:
Code:
<if condition="$show['postscol'] AND exec_switch_bg()"><td class="$bgclass">$userinfo[posts]</td></if>
after, add:
Code:
<td class="$bgclass">$userinfo[post_thanks_thanked_times]</td>