With this version you can:
— Translate the keywords AND and OR used in searches. For instance, to translate the keywords in Spanish, add these definitions to bp-custom.php:
define ('BPS_AND', ' Y '); // AND in Spanish define ('BPS_OR', ' O '); // OR in Spanish
— Adjust the multiple select size in search forms, using the bps_field_before_search_form hook. For instance, add this code to bp-custom.php:
add_action ('bps_field_before_search_form', 'new_multiselect_size'); function new_multiselect_size ($f) { if ($f->display == 'multiselectbox') { $f->multiselect_size = 6; } }
Additionally, a bug happening when you used the bps_match_all hook has been fixed, and some minor adjustments to the bps-form-default template have been made.