• Hi

    I have been trying to replace the default search with this plugins functionality on the estore theme but the search box just remove the icon on the top right corner of the menu, I would like the search box of this plugin to appear where the default search box is. i.e appear after clicking the icon.

    Thanks

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter kolanawilson

    (@kolanawilson)

    I have tried this:

    add_filter( ‘get_search_form’, ‘aws_search_form’ );

    function aws_search_form( $form ) {
    return do_shortcode( ‘[aws_search_form]’ );
    }

    in the function.php but it did not work.

    Plugin Author ILLID

    (@mihail-barinov)

    Hello,

    Yes, I see that when ‘Seamless integration’ option for this theme is active than search icon in the right corner is lost.

    But you can fix this. Don’t turn off ‘Seamless integration’ option. Than add code below to your theme function.php file:

    add_filter( 'aws_searchbox_markup', 'aws_searchbox_markup' );
    
    function aws_searchbox_markup( $markup ) {
        $button = '<button type="submit" class="searchsubmit" name="submit" value="Search"><i class="fa fa-search"></i></button>';
        $markup = str_replace( '</form>', $button . '</form>', $markup );
        return $markup;
    }

    Also add this style to theme style.css file:

    .search-wrapper .header-search-box .searchsubmit {
        float: right;
        height: 44px;
    }
    
    .aws-container .aws-show-clear .aws-search-field {
        width: 85%;
        float: left;
    }
    Thread Starter kolanawilson

    (@kolanawilson)

    Hi,

    I tried putting the lines of code above in the respective files. It didn’t work, seamless integration is still on. In this case nothing is happening at all

    Please help.

    Plugin Author ILLID

    (@mihail-barinov)

    Does seamless integration option enabled on your site right now?
    Look like its doesn’t.

    Thanks.

    Thread Starter kolanawilson

    (@kolanawilson)

    Hi, yes it is enabled

    Thread Starter kolanawilson

    (@kolanawilson)

    Hi also, the indexing button does no longer work after the latest update of the plugin.

    Plugin Author ILLID

    (@mihail-barinov)

    I just don’t see plugin search form on your site.

    Looks like you use caching plugin Endurance. Please try to clear cache.

    About re-index button – please tell me do you see any errors there? Try to open browser console window and check errors there.

    Thanks.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Replace default search with eStore them’ is closed to new replies.