Home Forums Basel support forum Search for products Reply To: Search for products

#25655

Artem Temos
Keymaster

Hi,

Try to add the following code snippet to the functions.php file in the child theme to increase it

	function basel_header_block_search() {
		$header_search = basel_get_opt( 'header_search' );
		if( $header_search == 'disable' ) return;

		$classes = 'search-button';
		$classes .= ' basel-search-' . $header_search;
		if ( basel_get_opt( 'mobile_search_icon' ) ) $classes .= ' mobile-search-icon';
		?>
			<div class="<?php echo esc_attr( $classes ); ?>">
				<a href="#">
					<i class="fa fa-search"></i>
				</a>
				<div class="basel-search-wrapper">
					<div class="basel-search-inner">
						<span class="basel-close-search"><?php esc_html_e('close', 'basel'); ?></span>
						<?php basel_header_block_search_extended( false, true, array('thumbnail' => 1, 'price' => 1, 'count' => 5), false ); ?>
					</div>
				</div>
			</div>
		<?php
	}

Regards