Users can only vote once. In case a user has already voted, the old value is replaced by the new rating.
Well, the average score is represented by the images and the number of votes is already included.
Anyway you could do it like this in
postbit_userrating:
At the Moment we have:
Code:
<br>Rating:<br><img src="images/$userrating" alt="$post[ratenum] Votes">
<br><smallfont>$wholink</smallfont><br>
Change it to:
Code:
<br>Rating:<br><img src="images/$userrating" alt="$post[ratenum] Votes / $rating points average">
<br><smallfont>$wholink</smallfont><br>
do the same for
getuserinfo_rating
You could also change the
// User ratings....... Code in
member.php and
functions.php
change:
PHP Code:
$wholink="<a href=\"javascript:who($userid)\">($rateuser[ratenum] Votes)</a>";
}
else {
$wholink="($rateuser[ratenum] Votes)";
to:
PHP Code:
$wholink="<a href=\"javascript:who($userid)\">($rateuser[ratenum] Votes / $rating points average)</a>";
}
else {
$wholink="($rateuser[ratenum] Votes / $rating points average)";