Hi All,
I hope you guys can help me. I got this working on my site and when I vote for an article it displays it, also on the sidebar where I have the script to show the highest votes.
But when I refresh, it goes away and only 1 is still on there. But the votings are being saved, cause I can see them in the wp admin area.
Any idea?
This is the code on my post.php:
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
And this is the code on the sidebar.php:
<?php if (function_exists('get_highest_rated')): ?>
<ul>
<?php get_highest_rated('both', 1, 5); ?>
</ul>
<?php endif; ?>