Drop-down list
-
Hello,
First, thank you for your great plugin.
Just want to customize a little bit more, my search form is on the member’s page, only on one xprofile field.
Instead of a search field where people can type everything they want, since the filter is on a xprofile field with only a fixed number of values, I would prefer to have a drop-down list with only the value that this field can have.
For example if my field is “team” and fixed values for this field are “1”, “2” and “3”, I want only those in the drop-down list.
I tried something like this in a bp-custom.php file in “wp-content/plugins” directory, I found that code in another post :
add_action ('bps_field_before_search_form', 'set_placeholder'); function set_placeholder ($f) { if ($f->code == 'field_9' && $f->display == 'selectbox') { $f->options[''] = '1'; $f->options[''] = '2'; $f->options[''] = '3'; } }
But nothing changes, I certainly missed something..
Thank you for your help ??
- The topic ‘Drop-down list’ is closed to new replies.