Is there anyway to get their reputation TEXT to show instead of their points?
For example, instead of showing "JoeUser(50)", show "JoeUser(Great Reputation)"
Its the Reputation Level vs Reputation Points.
Any ideas? I see in the XML file I just need to change the DB field to the appropriate field then reinstall... any idea what that is?
FROM
$sonuclaryaz .= "<a href=\"member.php?u=".$getrep['userid']."\">".$getrep['username']."</a> (".$getrep['reputation']."), ";
TO
$sonuclaryaz .= "<a href=\"member.php?u=".$getrep['userid']."\">".$getrep['username']."</a> (".$getrep['reputation']."), "; (The bolded text needs to be changed)
|