• Resolved RiaanZA

    (@riaanza)


    Is it possible to change the number of characters required before search is triggered, currently it’s set to 3

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mikko Saari

    (@msaari)

    Yes, it’s an adjustable parameter. You can use the relevanssi_live_search_configs filter hook to modify the settings. The minimum character limit is in $config['default']['input']['min_chars']:

    add_filter( 'relevanssi_live_search_configs', function( $config ) {
    $config['default']['input']['min_chars'] = 2;
    return $config;
    } );
    Thread Starter RiaanZA

    (@riaanza)

    Thanks for the quick response

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.