Open daveromsey opened 1 month ago
Closes https://webdevstudios.atlassian.net/browse/WPCE-330
Here's a plugin to test overriding the debounce timeout value for the searchable_posts index.
searchable_posts
<?php /** * Plugin Name: Algolia Test Site Functions * Plugin URI: * Description: * Version: 1.0.0 */ namespace AlgoliaTestFunctions; add_filter( 'algolia_autocomplete_debounce_wp_searchable_posts', __NAMESPACE__ . '\searchable_posts_index_debounce' ); function searchable_posts_index_debounce() { return 5000; }
Closes https://webdevstudios.atlassian.net/browse/WPCE-330
Here's a plugin to test overriding the debounce timeout value for the
searchable_posts
index.