@jordi-radstake
Active 8 years, 9 months ago
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Other question, is it possible to add multiple includes to this?
<?php if (bp_group_has_members( array( 'include' => include_by_meta($geslacht, 'Geslacht'), 'type' => 'newest') )) : ?>
Why can’t I just copy that function?
function include_by_meta_group($theMetaValue, $theMetaField) { $memberArray = array(); if (bp_group_has_members()) : while (bp_group_members()) : bp_group_the_member(); $theFieldValue = bp_get_member_profile_data( 'field='. $theMetaField ); if ($theFieldValue==$theMetaValue) { array_push($memberArray, bp_get_member_user_id()); } endwhile; endif; $theIncludeString=implode(",",$memberArray); return $theIncludeString; }
Oh wait, it has to do with the function:
function include_by_meta($theMetaValue, $theMetaField) { $memberArray = array(); if (bp_has_members()) : while (bp_members()) : bp_the_member(); $theFieldValue = bp_get_member_profile_data( 'field='. $theMetaField ); if ($theFieldValue==$theMetaValue) { array_push($memberArray, bp_get_member_user_id()); } endwhile; endif; $theIncludeString=implode(",",$memberArray); return $theIncludeString; }
I did, but that’s not working.
<?php $geslacht = bp_get_profile_field_data('field=Geslacht&user_id='.bp_loggedin_user_id()); ?> <?php //if ( bp_group_has_members( 'exclude_admins_mods=0' ) ) : ?> <?php if (bp_group_has_members( array( 'include' => include_by_meta($geslacht, 'Geslacht'), 'type' => 'newest') )) : ?> <?php do_action( 'bp_before_group_members_content' ); ?> <div class="item-list-tabs" id="subnav" role="navigation"> <ul>
Now I would have the same for group-members, but that seems not to work?
Ok, thnx for mentioning that 🙂
Never mind, fixed it.
<?php global $bp; $the_user_id = $bp->loggedin_user->userdata->ID; $the_user_login = $bp->loggedin_user->userdata->user_login; $geslacht = bp_get_profile_field_data('field=Geslacht&user_id='.bp_loggedin_user_id()); ?> <?php if (bp_has_members( array( 'include' => include_by_meta($geslacht, 'Geslacht'), 'type' => 'newest') )) : ?>
(geslacht is dutch for gender btw.)
Viewing 7 replies - 1 through 7 (of 7 total)