Home Forums Basel support forum Search for products

Search for products

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #25640

    Funkierbike
    Participant

    Hello,

    The ‘search for products’ shows only three results and if you want to see more you have to click ‘view all results’.
    Is it possible to show more then only three results?

    Thanks,
    Yuval.

    #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

    #25658

    Funkierbike
    Participant

    The font color is gray now as you can see on the attached picture.
    How can I change it to white?

    Attachments:
    You must be logged in to view attached files.
    #25663

    Bogdan Donovan
    Keymaster

    Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

    body .basel-search-full-screen .basel-search-inner input[type="text"] {
    	color: white;
    }

    Regards

    #25718

    Funkierbike
    Participant

    Thanks a lot!!

    #25724

    Artem Temos
    Keymaster

    You are welcome!

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘Search for products’ is closed to new replies.