PDA

View Full Version : Reputation Point Display


Matt Slick
12-25-2009, 11:42 PM
Does anyone know how to display the numeric value of the reputation points in 4.0?

It'd be great to have it listed under the green bars. Something like, "Reputation Points = xx"

It is something our posters like to have.

Thanks.

Pangramma
02-22-2010, 12:36 AM
+1 to Matt's question...

deadbolt80
02-22-2010, 04:30 AM
+2 on that question. I have many members on my forum that want to use reputation points but don't know how to. I don't even know how to use it or where to go even tho it's activated.

maidos
03-02-2010, 05:58 PM
+3, i have pauls mods which really take advantage of the reputation but adding reputaton point would help alot more since my forum is heavily reliant on reputation

sticky
03-06-2010, 12:40 PM
+4... really need this.

--------------- Added 1267932763 at 1267932763 ---------------

Come on... somebody.

princeedward
03-12-2010, 01:18 PM
guys just create new phrase and insert this to your postbit legacy template

GO > ACP > LANGUAGE & PHRASES > PHRASE MANAGER >ADD NEW PHRASE


Phrase Type: GLOBAL
Product: vBulletin
Varname: replevel (anyword that suit you)
Text: Rep Level (anyword that suit you)
SAVE!

then add this to your postbit legacy template


<dt>{vb:rawphrase 'replevel'}</dt> <dd>{vb:raw post.reputation}</dd>


or go to postbit reputation template and change the whole code with this...


<img class="repimg" src="{vb:stylevar imgdir_reputation}/reputation_{vb:raw posneg}.png" alt="{vb:raw post.username} {vb:raw post.level} (
{vb:rawphrase 'replevel'}:{vb:raw post.reputation})"/>





goodluck and best regards to all...

:p:up:

sticky
03-15-2010, 04:50 AM
^ That works, thanks so much!!!

However, the number appears under "Rep Level" instead of on the same line. How do I change that?

princeedward
03-15-2010, 11:50 AM
^ That works, thanks so much!!!

However, the number appears under "Rep Level" instead of on the same line. How do I change that?well i cant help you coz i cant see where did you place it? you have to place it somewhere maybe just play around where the best place is...

here is the code where i had this... so you can figure out where to place the code



<vb:if condition="$show['infraction'] OR $show['reppower']">

<vb:if condition="$show['reputation']">
<vb:if condition="$show['reppower']">


<dt>{vb:rawphrase 'replevel'}</dt> <dd>{vb:raw post.reputation}</dd>

<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>


goodluck and best regards

:p