Quote:
Originally Posted by hollyboy
but why some users show power rep and not rep? I don't get it
|
I don't know...I would have to take a look at whatever code, whether a plugin or a template hack, to see why.
Take a look in your "postbit_legacy" template, and locate the block of code similar to:
HTML Code:
<vb:if condition="$show['infraction'] OR $show['reppower']">
<dl class="user_rep">
<vb:if condition="$show['infraction']">
<dt>{vb:rawphrase infractions}</dt>
<dd>{vb:raw post.warnings}/{vb:raw post.infractions} ({vb:raw post.ipoints})</dd>
</vb:if>
<vb:if condition="$show['reputation']">
<vb:if condition="$show['reppower']">
<dt>{vb:rawphrase reppower}</dt>
<dd id="reppower_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reppower}</dd>
</vb:if>
</vb:if>
</dl>
</vb:if>
What do you have most similar to that code?