• Resolved vytaskk

    (@vytaskk)


    Hello,

    FiboSearch bar is overlaping original theme search bar with results, making them both visible. FiboSearch option to Replace theme bar is checked. Theme is Uncode

    Here is a printscreen: https://prnt.sc/D_oWI88M6owB

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello dear friend,
    I had encountered a similar issue as well. Add this code to the footer of your theme and adjust the values as desired. ( – 25 )
    This should help until the plugin developers fix the issue.

    jQuery(document).ready(function($) {
    if (typeof $.DgwtWcasAutocompleteSearch !== 'undefined') {
    $.DgwtWcasAutocompleteSearch.prototype.fixPositionSuggestions = function() {
    var that = this,
    $suggestions = that.getSuggestionsContainer(),
    $formEl = that.getForm(),
    $input = that.el,
    formData = that.getElementInfo($formEl),
    inputData = that.getElementInfo($input),
    offset = {
    top: inputData.top + inputData.height - 25,
    left: formData.left
    };
    $suggestions.css(offset);
    };
    }
    });
    Plugin Support Kris

    (@c0nst)

    Hi @vytaskk!

    You can completely hide the theme search bar dropdown to fix this issue. To do that use this CSS code:

    .dgwt-wcas-open .overlay-search {
    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

    A quick fix is to rollback the plugin to version 1.28.1

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.