MyBB - Newpoints on MemberList

bzforum

New Arrival
Joined
Sep 25, 2012
Messages
16
Reaction score
0
FP$
257
If u ever wanted to display the Member's Points (NewPoints Plugin) on the Memberlist here are the simple Template Edits u need to do.

This is a simple Template Edit

1) Go to "Current Template" >> "Member List Templates" >> "memberlist"
Find this line
Code:
<td class="tcat" width="10%" align="center"><span class="smalltext"><strong>{$lang->posts}</strong></span></td>

Below this line add
Code:
<td class="tcat" width="10%" align="center"><span class="smalltext"><strong>NewPoints</strong></span></td>

Save the template


Then go to


2)"Current Template" >> "Member List Templates" >> "memberlist_user"
Find this line
Code:
<td class="{$alt_bg}" align="center">{$user['postnum']}</td>

Below this line add
Code:
<td class="{$alt_bg}" align="center">{$user['newpoints']}</td>


and you are done 🙂

You will see the members points in the MemberList!!
 
Back
Top Bottom