Keyword

Fatal error when trying to show Vote Count

  • Goh Yew Hoe
  • Goh Yew Hoe's Avatar Topic Author
  • Offline
  • Junior Member
More
12 years 5 months ago - 12 years 5 months ago #106889 by Goh Yew Hoe
Fatal error when trying to show Vote Count was created by Goh Yew Hoe
I'm trying to get Vote count to show on my tag page with this code in tag.php
$votes_count = K2ModelItem::getVotesNum($item->id);
echo $votes_count;

But I ended up getting this error which I cannot figure out.
Fatal error: Call to undefined method K2ViewItemlist::getRating() in /components/com_k2/models/item.php on line 846

Anyone mod or coder who can help me solve this error? I managed to get Vote Counts showing on category list, so now I'm trying to do the same for tag listing but I don't get why the error message >_<

Please Log in or Create an account to join the conversation.

More
12 years 5 months ago #106890 by Lefteris
Replied by Lefteris on topic Re: Fatal error when trying to show Vote Count
Hi. Try something like that:
$model = K2Model::getInstance('Item', 'K2Model');
$votes_count = $model->getVotesNum($item->id);

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum