Skip to content

Instantly share code, notes, and snippets.

@rayrutjes
Created July 23, 2018 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rayrutjes/defc1c91517d19f9cd8c33fa2fe5db76 to your computer and use it in GitHub Desktop.
Save rayrutjes/defc1c91517d19f9cd8c33fa2fe5db76 to your computer and use it in GitHub Desktop.
Hide autocomplete snippet on custom condition - WordPress - Algolia
<?php
add_filter( 'algolia_autocomplete_config', function ( $config ) {
if (true) { // Replace this condition to match your needs.
// Autocomplete enabled.
return $config
}
// Autocomplete disabled.
return array();
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment