Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Display something if xprofile_get_field_data( ’xxx’ ) == ’yyy’

If anyone is concerned…

1) In bp-custom.php

`function My_Function ($user_id) {
global $bp;
$type_member = xprofile_get_field_data( ‘FIELD NAME’, $user_id );
if($type_member == ‘FIELD VALUE’) {
return true;
} else {
return false;
}
}`

2) Somewhere in your theme to display something to this type of member :

`
loggedin_user->id)) : ?>
HTML TO DISPLAY
`

Skip to toolbar