PDA

View Full Version : Make Reputation Bars show Rep Power not Rep Level


Impromptu
12-08-2013, 07:27 AM
Hi All,

I have reputation on my website and want to keep it simple by only using REP POWER but not REP LEVEL. However, the REP Bars are based on rep levels and not rep power. I know it's in file function_reputation.php but I'm not sure what the variable is.

I've tried to change $reputation_value to $reppower but doesn't work from the file function_reputation.php

-----------------------------------------------------------------

if ($reputation_value > 500)
{ // bright green bars take 200 pts not the normal 100
$reputation_value = ($reputation_value / 2) + 250;
}

$reputationbars = intval($reputation_value / 100); // award 1 reputation bar for every 100 points
if ($reputationbars > 10)
{
$reputationbars = 10;
}
--------------------------------------------------

Thank you