Log in

View Full Version : Reputation Displayed as Numbers


UZFRED
06-16-2006, 10:00 PM
I was looking for this mod but I found no promising results on this community.
So I went out and try for myself and came up with the result I wanted.
So basically what this modification does is the following (X's represent the gems):

Before modification:

Rep: XXXXXXXXX

After modification:

Rep: 1046
XXXXXXXXX



For the Default template do the following:

In postbit_legacy find:

</if>$post[reputationdisplay]</div></if>

REPLACE with

</if>Rep: $post[reputation]<br /> $post[reputationdisplay]</div></if>

For other templates (tested on ExtremePixels skin's Air and Fusion) do the following:

In postbit_legacy find:

<if condition="$show['reputation']"><div class="info">Rep: $post[reputationdisplay]</div></if>

REPLACE with

<if condition="$show['reputation']"><div class="info">Rep: $post[reputation]<br /> $post[reputationdisplay]</div></if>

If it isn't working on one of the templates you're using do the following.
Try to find the string "posts" in postbit_legacy. Below this piece of code you'll find the piece of code that displays reputation. You must find the part that displays the gems.

Before the Gem Display Code (on the Default Skin it was "$post[reputationdisplay]" (without quotes)) place:

$post[reputation]<br />

I hope this was really useful to some people!

chimaira
06-17-2006, 09:18 PM
Already knew this.. But nice one. Will be handy for others