PDA

View Full Version : Display Reputation Altering Power?


TJFweb
10-25-2005, 06:24 AM
There was a great hack / edit for 3.0.x which would calculate / show a user's reputation altering power.

Does such a thing exist for 3.5.0? I would have thought that vB would have implemented that feature into the board by now :ermm:

Taco John
10-25-2005, 06:43 AM
It is implemented. All I needed to do was turn it on in the setting. And let me tell you... It's a headache. You'd better make certain your points system is ship shape or your members will complain. I wish I'd have just kept it hidden.

TJFweb
10-25-2005, 07:29 AM
It is implemented. All I needed to do was turn it on in the setting. And let me tell you... It's a headache. You'd better make certain your points system is ship shape or your members will complain. I wish I'd have just kept it hidden.

Where is this setting??

Chris M
10-25-2005, 12:54 PM
vBulletin Options screen :)

Chris

TJFweb
10-25-2005, 10:27 PM
vBulletin Options screen :)

Chris

Alright... I found the option to display reputation power.

Does anyone know what I need to insert in my postbit to get the value to show up?

Thanks ;-)

Chris M
10-25-2005, 11:03 PM
It should be in the template by default :)

Chris

TJFweb
10-26-2005, 01:35 AM
It should be in the template by default :)

Chris

It's here for anyone who has the same problem as me:

<if condition="$show['reputation']"><div><if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower]</if>$post[reputationdisplay]</div></if>

version2
11-13-2005, 08:32 PM
It's here for anyone who has the same problem as me:

<if condition="$show['reputation']"><div><if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower]</if>$post[reputationdisplay]</div></if>

Anyone know the variable to display just the integer value of rep power?

Jinovich
11-16-2005, 07:51 PM
Anyone know the variable to display just the integer value of rep power?


If you just want to show the interger value then remove the
"$vbphrase[reppower]: " from the code posted.