%k25u25%fgd5n!
/home/nancmxek/ljsecuredoors.com/wp-content/themes/windoor/modules/search/helper.php
<?php

    add_action( 'windoor_after_main_css', 'search_style' );
    function search_style() {
        wp_enqueue_style( 'windoor-quick-search', get_theme_file_uri('/modules/search/assets/css/search.css'), false, WINDOOR_THEME_VERSION, 'all');
    }

    add_action('wp_ajax_windoor_search_data_fetch' , 'windoor_search_data_fetch');
	add_action('wp_ajax_nopriv_windoor_search_data_fetch','windoor_search_data_fetch');
	function windoor_search_data_fetch(){

        $search_val = windoor_sanitization($_POST['search_val']);

        $the_query = new WP_Query( array( 'posts_per_page' => 5, 's' => $search_val, 'post_type' => array('post', 'product') ) );
        if( $the_query->have_posts() ) :
            while( $the_query->have_posts() ): $the_query->the_post(); ?>
                <li class="quick_search_data_item">
                    <a href="<?php echo esc_url( get_permalink() ); ?>">
                        <?php the_post_thumbnail( 'thumbnail', array( 'class' => ' ' ) ); ?>
                        <?php the_title();?>
                    </a>
                </li>
            <?php endwhile;
            wp_reset_postdata();
        else:
            echo'<p>'. esc_html__( 'No Results Found', 'windoor') .'</p>';
        endif;

        die();
}

?>