View Full Version : [Completed] Memberlist reputation displayed in numbers?
Unfolded90
11-21-2013, 05:04 PM
Hi
I would like to change the memberlist to display reputation numbers rather then the images.
Any help appreciated
ozzy47
11-22-2013, 12:39 AM
Edit the template, memberlist. Find this code:
<vb:if condition="$show['reputationcol']">
<td class="reputation">
<span class="member_reputation" title="{vb:raw userinfo.username} {vb:raw userinfo.level}">
<vb:each from="userinfo.reputationdisplay" value="row">
<img class="{vb:raw row.class}" src="{vb:stylevar imgdir_reputation}/reputation_{vb:raw row.posneg}{vb:raw row.imgext}" alt="" />{vb:raw row.rowend}
</vb:each>
</span>
</td>
</vb:if>And change it to this:
<vb:if condition="$show['reputationcol']">
<td class="reputation">
<vb:comment><span class="member_reputation" title="{vb:raw userinfo.username} {vb:raw userinfo.level}">
<vb:each from="userinfo.reputationdisplay" value="row">
<img class="{vb:raw row.class}" src="{vb:stylevar imgdir_reputation}/reputation_{vb:raw row.posneg}{vb:raw row.imgext}" alt="" />{vb:raw row.rowend}
</vb:each>
</span></vb:comment>
Level: {vb:raw userinfo.reputation}
</td>
</vb:if>The part in red, is what will show the number.
Unfolded90
11-22-2013, 04:53 AM
Thankyou ozzy :D
ozzy47
11-22-2013, 10:25 AM
Not a problem, glad to help. :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.