MyBB Community Forums

Full Version: Change reputation to something else
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I change reputation on the postbit, to say, "Points"?
Go to postbit_reputation template and modify the {$lang->postbit_reputation} to Points
<br />{$lang->postbit_reputation} {$post['userreputation']}
to
<br />Points: {$post['userreputation']}

You can even modify language files to do the same.

Regards
WallBB
(2016-09-16, 03:24 PM)WallBB Wrote: [ -> ]Go to postbit_reputation template and modify the {$lang->postbit_reputation} to Points
<br />{$lang->postbit_reputation} {$post['userreputation']}
to
<br />Points: {$post['userreputation']}

You can even modify language files to do the same.

Regards
WallBB
thanks