Log in

View Full Version : Mini Mods - Reputation Number & Level in Postbit


1MoreGoodGuy
01-03-2019, 10:00 PM
Reputation Number & Level in Postbit (works in 4.2.4)

https://vborg.vbsupport.ru/external/2019/01/1.png (https://s1277.photobucket.com/user/scottboschetti/media/Screen%20Shot%202019-01-03%20at%209.56.25%20PM_zpsjxechjlm.png.html)

This took me quite a bit of time to figure out (I'm by no means an expert) and I couldn't find this anywhere on this site.

In postbit_legacy find this:

<vb:if condition="$show['infraction'] OR $show['reppower']">
<dl class="user_rep">
<vb:if condition="$show['infraction']">
<dt>{vb:rawphrase infractions}</dt>
<dd>{vb:raw post.warnings}/{vb:raw post.infractions} ({vb:raw post.ipoints})</dd>
</vb:if>
<vb:if condition="$show['reputation']">
<vb:if condition="$show['reppower']">
<dt>{vb:rawphrase reppower}</dt>
<dd id="reppower_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reppower}</dd>
</vb:if>

Directly underneath it paste this:

<dd><vb:if condition="$show['reputation']">
Reputation: {vb:raw post.reputation}</dd>
</vb:if>
<dd><vb:if condition="$show['reputation']">
Rep Level: {vb:raw post.level}</dd>
</vb:if>

Enjoy.

gnrx
01-11-2019, 08:50 AM
With your permission, like in my forum I have users from 2 differents languages, I made some modification, I add a language phrases.

In admincp, I create 2 phrases:
postbit_reputation
and
postbit_replevel

After this, the code is this:
<dd><vb:if condition="$show['reputation']">
{vb:rawphrase postbit_reputation} {vb:raw post.reputation}</dd>
</vb:if>
<dd><vb:if condition="$show['reputation']">
{vb:rawphrase postbit_replevel} {vb:raw post.level}</dd>
</vb:if>
And now, all users view the phrases in her language.

Thanks and regards.

1MoreGoodGuy
01-19-2019, 10:16 PM
Glad you were able to modify it to suit your needs