• Resolved burgerino

    (@burgerino)


    Hi, thanks for this great theme! I was wondering if it is possible to have the ajax search also using SKU codes and product categories. Thanks a lot

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @burgerino,

    I am sorry for the delay in response.

    I was wondering if it is possible to have the ajax search also using SKU codes and product categories.

    Currently it is not possible. I am sorry, but it sounds interesting to add it to our radar.

    You may observe the potential improvements (requires advanced coding knowledge) you could add directly to theme’s code below found in inc/plugins/woocommerce/woocommerce.php

    function botiga_woocommerce_scripts_after_custom_js() {
    	// Ajax Search
    	$ajax_search = get_theme_mod( 'shop_search_enable_ajax', 0 );
    	if( $ajax_search ) {
    		$posts_per_page  = get_theme_mod( 'shop_search_ajax_posts_per_page', 15 );
    		$order 			 = get_theme_mod( 'shop_search_ajax_order', 'asc' );
    		$orderby 		 = get_theme_mod( 'shop_search_ajax_orderby', 'none' );
    		$show_categories = get_theme_mod( 'shop_search_ajax_show_categories', 1 );
    
    		wp_register_script( 'botiga-ajax-search', get_template_directory_uri() . '/assets/js/botiga-ajax-search.min.js', NULL, BOTIGA_VERSION, true );
    		wp_enqueue_script( 'botiga-ajax-search' );
    		wp_localize_script( 'botiga-ajax-search', 'botiga_ajax_search', array(
    			'nonce' => wp_create_nonce( 'botiga-ajax-search-random-nonce' ),
    			'query_args' => array(
    				'posts_per_page'  => apply_filters( 'botiga_shop_ajax_search_posts_per_page', $posts_per_page ),
    				'order' 		  => apply_filters( 'botiga_shop_ajax_search_order', $order ),
    				'orderby' 		  => apply_filters( 'botiga_shop_ajax_search_orderby', $orderby ),
    				'show_categories' => apply_filters( 'botiga_shop_ajax_search_show_categories', $show_categories )
    			)
    		) );
    	}
    }
    add_action( 'wp_enqueue_scripts', 'botiga_woocommerce_scripts_after_custom_js', 11 );
    Thread Starter burgerino

    (@burgerino)

    Thank you for looking into this. Unfortunately, I am not very good at coding for this instance. It would be a great addition in the future.

    Thread Starter burgerino

    (@burgerino)

    I saw the new update. Thanks for the addition!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Ajax search’ is closed to new replies.