-
Henry Wright replied to the topic Custom sort members in the forum How-to & Troubleshooting 9 years, 7 months ago
Look into using the
bp_after_has_members_parse_args
filter. I think it’ll let you override themeta_key
andmeta_value
params. That may help you do what you want?See here for a tutorial on how to use the filter.
-
Henry Wright replied to the topic Display more profile fields in member list in the forum How-to & Troubleshooting 9 years, 9 months ago
You can use the following to do that.
bp_member_profile_data( 'field=the field name' );
Be sure to replace the field name with your actual profile field name. Also note it must be used within the members loop.
-
Henry Wright replied to the topic Show profile fields in description/ excerpt in the forum How-to & Troubleshooting 9 years, 9 months ago
You’ll need to modify your members template. Check out the BuddyPress Template Hierarchy for more info on the template system.
To show a specific profile field inside the loop, you can just do:
bp_member_profile_data( 'field=the field name' );
@mastodontmedia
Active 8 years, 5 months ago