Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author ILLID

    (@mihail-barinov)

    Hello,

    Just try to go to plugin settings page and turn on ‘Seamless integration’ option.

    Thanks.

    Thread Starter matin23

    (@alijan1)

    thats on already dose not work with my theme );

    Plugin Author ILLID

    (@mihail-barinov)

    In this case please open your theme inc/structure/header.php file, find lines

    <div class="header-search">
    <div class="glyphicon glyphicon-search header-search-button"></div>
    <div class="header-search-input">
    <form role="search" method="get" class="woocommerce-product-search" action="<?php echo esc_url( home_url( '/' ) ); ?>">
    <input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search Products&hellip;', 'placeholder', 'shop-isle' ); ?>" value="<?php echo get_search_query(); ?>" name="s" title="<?php echo esc_attr_x( 'Search for:', 'label', 'shop-isle' ); ?>" />
    <input type="submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'shop-isle' ); ?>" />
    <input type="hidden" name="post_type" value="product" />
    </form>
    </div>
    </div>

    and replace it with

    <div class="header-search">
    <div class="glyphicon glyphicon-search header-search-button"></div>
    <div class="header-search-input">
    <?php if ( function_exists( 'aws_get_search_form' ) ) { aws_get_search_form(); } ?>
    </div>
    </div>
    • This reply was modified 6 years, 7 months ago by ILLID.
    Thread Starter matin23

    (@alijan1)

    that works thank you so much

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘how to replace Shop Isle search’ is closed to new replies.