Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Damian Góra

    (@damian-gora)

    Hi,
    I hope you using a child theme.
    You can override the file template-parts/template-part-searchbar.php

    Replace line from 23 to 45:

    
    <div class="header-search-form col-md-<?php echo $row; ?>">
        <div class="header-search-title col-sm-2 col-xs-3">
           ...
        </div>
        <form role="search" method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>">
        ...
        </form>
    </div>
    

    to

    
    <div class="header-search-form col-md-<?php echo $row; ?>">
        <?php echo do_shortcode('[wcas-search-form]'); ?>
    </div>
    

    It worked for me. It’s relly nice theme ??

    Best
    Damian Góra

    Thread Starter huntman

    (@huntman)

    Thank you for assistance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to replace the default search of MaxStore with Ajax Search for WooCommerce?’ is closed to new replies.