Rating: 5 stars
how do i place the code shown into a buddypress comment
]]>Rating: 5 stars
Hi,
I had to change the query to properly operate the module.
This is my new query :
on plugins/wp-likes/likes.php:506
From:
SELECT post_id, p.post_title AS title,count(post_id) AS num FROM $wpdb->likes,$wpdb->posts as p WHERE p.id=post_id GROUP BY post_id HAVING num>1 ORDER BY num DESC LIMIT 5
–>
To:
SELECT likes.post_id, post.post_title AS title,count(likes.post_id) AS num FROM $wpdb->likes likes,$wpdb->posts post WHERE post.id=likes.post_id GROUP BY likes.post_id ORDER BY num DESC LIMIT 5
Rating: 5 stars
I have been searching for a Plugin like that for eons – thanks!
]]>