Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,034
- How-to & Troubleshooting
- 129,678
- Creating & Extending
- 25,794
- Requests & Feedback
- 9,497
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,375
- Miscellaneous
- 9,181
-
What do you think about displaying the karma on the profile page too?
Something like this:
function rfp_show_poster_karma() {
global $bp;
$poster_id = $bp->displayed_user->id;
$karma = get_usermeta( $poster_id, 'rfp_post_karma' );
echo rfp_poster_karma($karma);
return;
}
add_filter( 'bp_before_member_header_meta', 'rfp_show_poster_karma' );