• Resolved ogge112

    (@ogge112)


    The search field on a mobile device doesn’t work, I just can’t enter any text to search. I use Flatsome as a theme. Any recommendations on where to start troubleshooting?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @ogge112!

    The issue you’re experiencing with the mobile overlay is related to a conflict between the FiboSearch and the mobile menu in the Flatsome theme. Specifically, when the search is placed inside the mobile menu, the mobile overlay (element .mfp-wrap) from the menu overlaps the search overlay. Please add below CSS to your theme to fix it:

    @media screen and (max-width: 849px) {
    body.dgwt-wcas-focused .mfp-bg,
    body.dgwt-wcas-focused .mfp-wrap,
    body.dgwt-wcas-focused .woocommerce-store-notice {
    display: none !important;
    }
    }

    .dgwt-wcas-overlay-mobile-on .mfp-wrap {
    display: none !important;
    }

    Paste it into Appearance -> Customize -> Additional CSS. If you aren’t familiar with custom CSS, take a look at this video.

    Best regards,
    Kris

Viewing 1 replies (of 1 total)

The topic ‘FiboSearch doesn’t work on mobile’ is closed to new replies.