PDA

View Full Version : Rep points on display


CaptainAwesome
11-08-2014, 06:09 AM
Is it possible for rep points to be displayed on the user details in posts? (i.e. under where it shows their name, avatar, post count etc).

Thanks

ShawneyJ
11-08-2014, 06:19 AM
this should show by default when enabling in Thread Display Options (showthread)>>Post Elements>>Display Reputation Power yes. though i could be wrong.

CaptainAwesome
11-08-2014, 06:45 AM
I went ahead an enabled that. What it now shows is "reputation power". Even thou people have reps, its showing as zero. I'm not quite sure i understand the whole rep/rep power thing.

ShawneyJ
11-08-2014, 07:32 AM
reputation power=how much rep power a member can give out?
reps show how much reps they have received.
long as in User Reputation Options its enabled, you should be cool ;)

CaptainAwesome
11-08-2014, 06:50 PM
this should show by default when enabling in Thread Display Options (showthread)>>Post Elements>>Display Reputation Power yes. though i could be wrong.

When i do this, all it displays is the rep power and not rep points.

CaptainAwesome
11-08-2014, 06:53 PM
reputation power=how much rep power a member can give out?
reps show how much reps they have received.
long as in User Reputation Options its enabled, you should be cool ;)

Its enabled, but not showing in threads.

Lynne
11-08-2014, 09:05 PM
The person's reputation just shows as bars. There is no option to show it as a number. I believe there may be a modification to do that, so I would suggest a search for it.

CaptainAwesome
11-09-2014, 01:33 AM
Thanks Lynne :)

CAG CheechDogg
11-09-2014, 04:09 AM
You can add the following anywhere in your postbit_legacy template:

<div class="pbit"><div>Rep Points: {vb:raw post.reputation}</div></div>

That will show the rep points as a number ....

CaptainAwesome
11-09-2014, 04:11 AM
I found this in another post and it worked (at least it appears to be working):

<dl class="userinfo_extra">
<vb:if condition="$show['reputation']">
<dt>REP</dt> <dd>{vb:raw post.reputation}</dd>
</vb:if>

CAG CheechDogg
11-09-2014, 04:14 AM
Yeah...that should work too ....