Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Dropdown › Reply To: Dropdown
April 23, 2015 at 10:51 am
#4574
Hi!
1. This is unfortunately not possible.
2. Could you please explain what do you mean by no “real” drop down?
3. Only by adding a few lines of custom CSS and altering the code.
Add this custom CSS to make the slider elements invisible:
.searchsettings .asp_noui_lu {
display: none !important;
}
.searchsettings .noUi-target {
display: none !important;
}
.asp_custom_f input[type=text] {
width: 30%;
}
Then open up the plugins/ajax-search-pro/includes/views/asp.shortcode.custom_fields.php file and go to lines 94-95, where the beginning of those lines are:
<input type="hidden" ...
<input type="hidden" ...
Change the input type to text on beginning of those lines, like this:
<input type="text" ...
<input type="text" ...
Save the file. Then you should see text fields instead of the range slider.
Best,Ernest Marcinko
If you like my products, don't forget to rate them on codecanyon :)