• Resolved ivanlik

    (@ivanlik)


    Hi , is there a option to adjust delay of calling Ajax for search on key press?, if I type slower I do not want to make Ajax request to many times.

    • This topic was modified 1 year ago by ivanlik.
    • This topic was modified 1 year ago by ivanlik.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mikko Saari

    (@msaari)

    Sure, add this to your theme functions.php:

    add_filter( 'relevanssi_live_search_configs', function( $configs ) {
        $configs['default']['input']['delay'] = 300;
        return $configs;
    } );

    300 ms is the default delay, increase the value to what feels good.

    Thread Starter ivanlik

    (@ivanlik)

    Great ! , thanks

    • This reply was modified 1 year ago by ivanlik.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Search delay’ is closed to new replies.