#61580
 Laura
Moderator

Hello, yes, your browser cache with CTLR+F5 and your website cache.

For the group, its done, here is what i did:

Created the function to show the field in functions.php of child theme:

COPY CODE

add_action( 'bp_directory_members_item', 'display_user_info' );
function display_user_info() {
	echo "Organization: ";
	bp_member_profile_data('field=Organization');
	echo "</br>";
}

Edited wp-content/themes/kleo/buddypress/groups/single/members.php

Found:

COPY CODE

				<div class="member-list-content">
					<h5><?php bp_group_member_link(); ?></h5>
					<span class="activity"><?php bp_group_member_joined_since(); ?></span>
					

Added

COPY CODE
<?php do_action( 'bp_directory_members_item' ); ?>

So it looks like

COPY CODE

				<div class="member-list-content">
					<h5><?php bp_group_member_link(); ?></h5>
					<span class="activity"><?php bp_group_member_joined_since(); ?></span>
					<?php do_action( 'bp_directory_members_item' ); ?>

Then copied the file to your child theme.

Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

Log in with your credentials

Forgot your details?