Tagged: Community-Builder, member directory
Hi Keith,
I am sorry but the list layout is not available as part of 1.x.We have it available in 2.0
https://i.imgur.com/ZlmNPRU.pngBut that will be atleast 2-3 weeks from now when we release it.
In the current version, if you select the list layout, It will simply change the grid to 1 column per row.
Adding profile fields is easy. There are 2 ways to do it.
1. By overriding the member list template. It gives you more control.
2. By putting the code in functions.php (a little bit less flexible).Which approach will you like to use?
Regards
BrajeshHi Keith,
While you are waiting for Brajesh to get back to you, you might like to take a look at my simple page n over-riding the BP template files. hope it helps.
Hi George,
Thank you.
You have a very informative article there and I am sure it will help many people.@ Keith,
In this case, you can copy community-builder/buddypress/members/members-list.php to your child theme/buddypress/members/members-list.php
and then we can use the following code to show a field in the loop.
bp_member_profile_data('field=About'); // About is the name of field, you should change it.
Or you can also use the following
echo xprofile_get_field_data( 'About', bp_get_member_user_id(), 'comma' );
If you are using the second style, you may want to use field id instead of field name for better efficiency.
echo xprofile_get_field_data( 2, bp_get_member_user_id(), 'comma' );
Hope that helps.
Regards
Brajesh
You must be logged in to reply to this topic.