• Hi bps team,

    I’d like to modify the bps form. I have many xprofile fields with a selectbox type, such as Body, Eye Color, Hair Color, etc. When the fields are in the bps form I can only select a option. So, There´s another way where I can select more than one option only for filter the members? Like xprofile fields were multiselect.

Viewing 1 replies (of 1 total)
  • Plugin Author Andrea Tarantini

    (@dontdream)

    Hi @keybeth,

    You can add this code in your bp-custom.php file:

    add_filter ('bps_field_data_for_search_form', 'change_display');
    function change_display ($f)
    {
    	if ($f->code == 'field_123')  $f->display = 'checkbox';    // or 'multiselectbox'
    	return $f;
    }

    Replace the number in ‘field_123’ with the actual ID of your selectbox field.

Viewing 1 replies (of 1 total)

The topic ‘Search filter with multiple options’ is closed to new replies.