• Hello, I’m trying to change the text boxes in a search field from text to a drop-down menu (or preferably a slider). This site uses a kleo child theme, and was created by another designer around 2 years ago.

    Looking through some of the answers in the forum, it appears that the bps-form-sample-1.php template will allow me to do this, but it isn’t an available option for the website. Is there any way to make it an option or to add the select box in a different way?

Viewing 1 replies (of 1 total)
  • Plugin Author Andrea Tarantini

    (@dontdream)

    Hi @usselmanjordan,

    Sorry for the late reply!

    If you wish to add bps-form-sample-1.php to your template options, copy bps-form-sample-1.php into the Kleo child theme template folder, then add this code to your bp-custom.php file:

    add_filter ('bps_templates', 'add_template');
    function add_template ($templates)
    {
    	$templates[] = 'members/bps-form-sample-1';
    	return $templates;
    }
Viewing 1 replies (of 1 total)

The topic ‘Change Range Fields To Drop-Down Boxes’ is closed to new replies.