| Server IP : 167.99.254.82 / Your IP : 216.73.216.76 Web Server : Apache System : Linux host.techisquad.com 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64 User : pawluxera ( 1011) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/immo/public_html/wp-content/themes/bumbleb/ |
Upload File : |
<?php
$query_string = bumbleb_get_query_string();
parse_str($query_string, $params);
$category_slug = isset( $params['product_cat'] ) ? $params['product_cat'] : '';
$terms = get_terms( 'product_cat',
array(
'hide_empty' => true,
'parent' => 0
));
$class_ajax_search = "";
$ajax_search = bumbleb_get_config('show-ajax-search',false);
$limit_ajax_search = bumbleb_get_config('limit-ajax-search',5);
if($ajax_search){
$class_ajax_search = "ajax-search";
}
?>
<form role="search" method="get" class="search-form <?php echo esc_attr($class_ajax_search); ?>" action="<?php echo esc_url(home_url( '/' )); ?>" data-admin="<?php echo admin_url( 'admin-ajax.php', 'bumbleb' ); ?>" data-noresult="<?php echo esc_html__('No Result','bumbleb') ; ?>" data-limit="<?php echo esc_attr($limit_ajax_search); ?>">
<div class="search-box">
<input type="text" value="<?php echo get_search_query(); ?>" name="s" id="s" class="input-search s" placeholder="<?php echo esc_attr__( 'Search...', 'bumbleb' ); ?>" />
<div class="close-search"></div>
<div class="result-search-products-content">
<div class="close-search"></div>
<ul class="result-search-products">
</ul>
</div>
</div>
<button id="searchsubmit2" class="btn mobile-search-btn" type="submit">
<span class="search-icon">
<i class="icon-search"></i>
</span>
<span><?php echo esc_html__('Search...','bumbleb'); ?></span>
</button>
<input type="hidden" name="post_type" value="product" />
</form>