Age range dropdown
-
Hi,
I’m using buddyboss with profile fields and your plugin. I want to modify the integer-range display. Make the age range two drop-down select boxes instead of two input boxes. I used the code below. Also tried field_4_age_range instead of field_4, but doesn’t work either. Please help!
add_action ('bps_field_before_search_form', 'change_display'); function change_display ($f) { if ($f->code == 'field_4' && $f->display == 'integer-range') { $f->display = 'range-select'; $range = range (18, 60); $f->options = array ('' => '') + array_combine ($range, $range); } }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Age range dropdown’ is closed to new replies.