[Resolved] xprofile fields outside of profile / buddypress
-
Hey,
I have managed to get my custom user fields / xprofile fields to show but only when im on the profile page. I tried the groups page but they don’t seem to be showing.What im trying to do is pull the xprofile fields into the header so that they show site wide.
Is this possible?The code im using is:
bp-custom.php<?php function custom_xprofile( $field ) { echo bp_custom_get_member_list_xprofile_data( $field ); } function bp_custom_get_member_list_xprofile_data( $field ) { global $site_members_template; return xprofile_get_field_data( $field, $site_members_template->member->id ); } ?>
Template
<?php custom_xprofile('First Name') ?>
I found the above code on this forum, but dont remember what post i found it in.
Any help would be appreciated.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Resolved] xprofile fields outside of profile / buddypress’ is closed to new replies.