Yes, I was wondering about that too. Is there an easy way to allow users to vote up/down blog entries, submitted links and sort them all by popularity, visits, etc?
@hempsworth or anyone able to get this working on blog posts? @hempsworth could we possibly get a development version that has this feature?
@alierkurt were you able to find a way to “like” blog posts?
@ds123 – I’ve got blog post Liking on mine (ie. in single.php). It was there out of the box, and is still there. Initially installed about 4 months ago I think. The only edit I’ve made to it is to swap bp_before_blog_single_post for bp_after_blog_single_post in Line 841. I also commented out the css in Line 880 and supplied my own. It renders just below my div.author-box. In my wp-admin I only have one settings page for it. Am I right in thinking there was a second settings page (or did I imagine that…)? I only ask because a couple of other plugins I’ve engaged fell over at the last WP update and needed tweaks to display settings in wp-admin again.
@aljuk – Does this function appear in the default BP single.php? I’m using a custom layout and BP-template-pack so I might need to do a bit of modification to the template’s single.php so users can ‘like’ individual posts outside of the activity stream…
Apologies if I’m resurrecting an old thread.
EDIT: Turns out this was super-simple. Just had to add <?php bp_like_button( get_the_ID(), ‘blogpost’ ); ?> to single.php in the custom template.