Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Age and Gender

@tubruk

Participant

I found this code but it doesnt work for me:

if ( bp_get_the_profile_field_name() == ‘Gender’ ) {
global $field;
$value = bp_unserialize_profile_field( $field->data->value );
$value = explode( “, “, $value);
if ( in_array( ‘Female’, $value ) )
echo ‘img src=”female.gif” /’;
if ( in_array( ‘Male’, $value ) )
echo ‘img src=”male.gif” /’;
}

I’m using checkboxes and I added this in memers-loop I want also to add it to profile loop

Skip to toolbar