It would be great to have a feature to show the number of times a certain node have been favorited by people, like on YouTube.

Comments

Sharique’s picture

I'm also looking for same feature.

asund’s picture

You can get this by putting the following function in your themes template.php

function _favorite_nodes_count($nid) {
  $sql = "SELECT * FROM {favorite_nodes} WHERE nid = %d";
  return db_num_rows(db_query($sql, $nid));
}

And then you can call the function in your node template like this:
<?php print(_favorite_nodes_count($node->nid)); ?>