WhaLberg
03-29-2007, 07:45 AM
Hello everyone,
If you want to show users' reputation power, point and level in postbit, here is the simple code for you.
Go to your AdminCP -> vBulletin Options -> Thread Display Options -> Post Elements -> Select Display Reputation Power and save.
Go to your postbit or postbit_legacy template and find that:
<if condition="$show['infraction']"><div>$vbphrase[infractions]: $post[warnings]/$post[infractions] ($post[ipoints])<br></div></if>
After that add:
<if condition="$show['reputation']"><div><if condition="$show['reppower']">
<br>
$vbphrase[reppower]: <span id="reppower_$post[postid]_$post[userid]">$post[reppower]<br>Reputation Point: $post[reputation]<br>Reputation Level:<br>$post[reputationdisplay]</span><br></if></if>
That's all.
You can take a look at the screenshot.
Please don't forget to click install, so I can know how many people are interested in what I do. :)
If you want to show users' reputation power, point and level in postbit, here is the simple code for you.
Go to your AdminCP -> vBulletin Options -> Thread Display Options -> Post Elements -> Select Display Reputation Power and save.
Go to your postbit or postbit_legacy template and find that:
<if condition="$show['infraction']"><div>$vbphrase[infractions]: $post[warnings]/$post[infractions] ($post[ipoints])<br></div></if>
After that add:
<if condition="$show['reputation']"><div><if condition="$show['reppower']">
<br>
$vbphrase[reppower]: <span id="reppower_$post[postid]_$post[userid]">$post[reppower]<br>Reputation Point: $post[reputation]<br>Reputation Level:<br>$post[reputationdisplay]</span><br></if></if>
That's all.
You can take a look at the screenshot.
Please don't forget to click install, so I can know how many people are interested in what I do. :)

