Title: Age range dropdown
Last modified: April 5, 2022

---

# Age range dropdown

 *  [PvK2020](https://wordpress.org/support/users/paulienvk/)
 * (@paulienvk)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/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)

 *  Plugin Author [Andrea Tarantini](https://wordpress.org/support/users/dontdream/)
 * (@dontdream)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/age-range-dropdown/#post-15540862)
 * Hi PvK2020,
 * Make sure you replace _field\_4_ with _field\_xx_, where _xx_ is the actual ID
   of your profile field.
 * If you are not using the standard _BP Profile Search_ plugin, but the basic version
   contained in the BuddyBoss Platform, replace the line:
 * `add_action ('bps_field_before_search_form', 'change_display');`
 * with:
 * `add_action ('bp_ps_field_before_search_form', 'change_display');`
 * Please let me know if this works for you!

Viewing 1 replies (of 1 total)

The topic ‘Age range dropdown’ is closed to new replies.

 * ![](https://ps.w.org/menubar/assets/icon-128x128.png?rev=1569441)
 * [Menubar](https://wordpress.org/plugins/menubar/)
 * [Support Threads](https://wordpress.org/support/plugin/menubar/)
 * [Active Topics](https://wordpress.org/support/plugin/menubar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/menubar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/menubar/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Andrea Tarantini](https://wordpress.org/support/users/dontdream/)
 * Last activity: [4 years, 2 months ago](https://wordpress.org/support/topic/age-range-dropdown/#post-15540862)
 * Status: not resolved