Info
- 4 posts
- 4 voices
- Started 4 years ago by _ck_
- Latest reply from Ashfame
- This topic is not resolved
trick for profile page -> add user post and topic count
-
- Posted 4 years ago #
Since bbpress.org doesn't have a "tips and tricks" I'll post this here.
If you'd like to tweak your profile.php template to show the total posts and topics started by a user, add this code under "bb_profile_data()"
<? echo "forum posts: <b>".$bbdb->get_var("SELECT COUNT(*) FROM bb_posts WHERE poster_id = $user_id AND post_status = 0")."</b> " ." topics started: <b>".$bbdb->get_var("SELECT COUNT(*) FROM bb_posts WHERE poster_id = $user_id AND post_status = 0 AND post_position = 1")."</b>"; ?>I'd make this into a plugin but I don't know how to append information within the profile (ie. attach to bb_profile_data)
-
- Posted 4 years ago #
awesome, just what i was looking for! thanks :)
-
- Posted 2 years ago #
Great, tnx! ;)
-
- Posted 2 years ago #
Its been 20 months since #784
Here are the queries I wrote which will take care of different bbPress table prefixes too :
http://blog.ashfame.com/2009/09/show-post-count-topics-started-bbpress/ -
You must log in to post.