1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php /** * The template for displaying search forms in flatsome * * @package flatsome */ ?>
<?php if ( in_array( 'yith-woocommerce-ajax-search/init.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { ?> <?php do_shortcode('[yith_woocommerce_ajax_search]'); ?> <?php } else { ?> <div class="row collapse search-wrapper"> <form method="get" id="searchform" class="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
<div class="large-10 small-10 columns"> <input type="search" class="field" name="s" value="<?php echo esc_attr( get_search_query() ); ?>" id="s" placeholder="<?php echo _e( 'Search', 'woocommerce' ); ?>…" /> <?php if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { ?> <input type="hidden" name="post_type" value="product"> <?php } ?> </div><!-- input --> <div class="large-2 small-2 columns"> <button class="button secondary postfix"><i class="icon-search"></i></button> </div><!-- button --> </form> </div><!-- row --> <?php } ?>
|