Home Forums WoodMart support forum how to make product search starts working from 2nd letter.

how to make product search starts working from 2nd letter.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #648321

    [email protected]
    Participant

    how to make product search starts working from the 2nd letter. now search start from the 3rd letter.

    #648537

    Luke Nielsen
    Keymaster

    Hello,

    Add the code below to the functions.php file in your child theme –

    function modify_woodmart_ajax_search_symbols_count( $count ) {
        return 2;
    }
    add_filter( 'woodmart_ajax_search_symbols_count', 'modify_woodmart_ajax_search_symbols_count' );

    Then check how it works.

    Kind Regards

Tagged: 

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