Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Accessing profile data in the member loop – checkbox?


zoltok
Participant

@zoltok

Ok, here was the solution! Indeed, if nothing is returned, the user hasn’t checked it. The problem was that I had to change the function to include the “get”.

`
$isMember = bp_get_member_profile_data( ‘field=Member’ );
if ($isMember == “”) {
?><?php
} else {
?>

Member

<?php
}
`

Skip to toolbar