Any updates? Just to clarify I’m wanting to show the points of the author of a post within the loop, so where it says there name and shows there avatar I would also like to show the points. Thanks.
e.g. code:
`
<?php printf( __( '%s‘, ‘buddypress’ ), bp_core_get_userlink( $post->post_author ) ) ?>
<a class="user" title="” href=”/members//”>
- <a title="Points" href="/members//achievements/”>0
`
I want to change that 0 to the number of points the user has!
`displayed_user->id ); ?>`
It wouldn’t be displayed_user as it’s in the loop and NOT on a member page so therefore would be something like author_meta right?
This works `global $bp; dpa_member_achievements_score( get_the_author_meta(‘id’) );`
Where might i put this code?