Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › I can order the resoults › Reply To: I can order the resoults
March 25, 2022 at 2:37 pm
#37311
Keymaster
You can use the filter on the results page only via adding the settings shortcode to the results page only, and turning off the settings visibility by default.
For the horizontal view, you can try this custom CSS:
.asp_ss form[name=options] {
display: flex !important;
}
.asp_ss form[name=options]>fieldset {
max-width: 10000px !important;
min-width: 100% !important;
}
.asp_ss form[name=options]>fieldset .asp_simplebar-content {
display: flex !important;
flex-wrap: wrap;
}
.asp_ss form[name=options]>fieldset .asp_option {
margin-left: 0 !important;
}
.asp_ss form[name=options]>fieldset .asp_option_label {
white-space: nowrap;
}