It was once. Are you running an old version of BuddyPress?
Running WP 3.1 BP 1.2.8
Have installed a search plugin where the drop downs are working.
Looking through the code it appears to be the bp-profile-search plugin that causes a conflict.
profile/edit.php – `$html .= apply_filters( ‘bp_get_the_profile_field_options_select’, ‘name ) ) . ‘”>’ . stripslashes( esc_attr( $options[$k]->name ) ) . ”, $options[$k] );`
bps-functions.php
`
add_filter (‘bp_get_the_profile_field_options_select’, ‘bps_field_options’, 99, 2);
….
case ‘selectbox’:
if ($option->name == $_POST[“field_$field->id”])
$selected = ‘ selected=”selected”‘;
else
$selected = ”;
$html = ‘name). ‘”>’.
esc_attr ($option->name). ”;
break;
…
`
Because no search parameters exist, the profile edit screen doesn’t show the selected drop down values.
Just for now, I have edited bp-profile-search bps_field_options filter function, adding:
`if( is_user_logged_in() )
if( bp_is_home() )
return $html;`
This does mean, however, that (as the search is in a side bar widget), those values a preselected in the search on the profile page.
Hello GRAQ,
Thank you for your feedback, I’ll look for a way to remove that conflict in BP Profile Search.