thanks ck for a great plugin. but i have a question
is it possible to output a list of the members with highest reputation points?
thanks
thanks ck for a great plugin. but i have a question
is it possible to output a list of the members with highest reputation points?
thanks
I answered that here:
http://bbpress.org/plugins/topic/bb-reputation/page/2/#post-3710
I also removed your post about me in the general forum, while I appreciate the thought, I'd rather not have that on there, thanks.
it works fine, but can you make it so the username links to their website field on their profile. i know basic sql, but not enough to edit what you have. http://www.massbase.com - on the bottom right on the sidebar.. its all their. I got the rep points linking to their profiles fine, but i need to make the usernames link their websites.
<?php
global $bbdb;
$results=$bbdb->get_results("SELECT user_login as name,meta_value as reputation FROM $bbdb->usermeta LEFT JOIN $bbdb->users ON ID=user_id WHERE meta_key='bb_reputation' ORDER BY CAST(meta_value as UNSIGNED) DESC LIMIT 10");
foreach ($results as $result) {echo "$result->name(name'>$result->reputation) , ";}
?>
thanks, sent this at the plugin page too
RSS feed for this topic
You must log in to post.