Forums Forums Search & Filter Pro Dropdown doesn’t work on Elementor page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Anonymous
    #259234

    Here is a picture of the S&F display page:
    S&F display page settings

    Trevor
    #259243

    I can see that something is applying ‘Nice Select’ javascript to our select box (maybe your theme), which is hiding our field and showing a different field, but it is not copying across the terms. That you would need to talk with the theme author about (probably best to stop it from doing that). Some custom CSS could hide the nice select version of the field and reveal our field. For example:

    .searchandfilter[data-sf-form-id="4693"] .sf-input-select:not(.nice-select) {
        display: inline-block !important;
    }
    .searchandfilter[data-sf-form-id="4693"] .sf-input-select.nice-select {
        display: none;
    }
    Anonymous
    #259359

    Trevor,

    Thanks for the CSS code. I entered it into the child theme and the dropdown list shows up just fine now.

    Bill

    Trevor
    #259363

    Thanks for letting me know. I will close this thread for now.

Viewing 4 posts - 1 through 4 (of 4 total)