How i can show the total value of the all posts votes?
I whant show the percent value of the post votes in relation the other posts.
How i can show the total value of the all posts votes?
I whant show the percent value of the post votes in relation the other posts.
In votingfunctions.php, around line 91 change
$votecount = number_format(100*($forcount / $totalcount), 0) . "%")";
to
$votecount = number_format(100*($forcount / $totalcount), 0) . "% (".$totalcount." votes)";
You must log in to post.