Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Disable the 'missing integration' notice in SearchWP
<?php
add_filter( 'searchwp_missing_integration_notices', '__return_false' );
@davevanhoorn
Copy link

For SearchWP 4.0.0 and above:

add_filter( 'searchwp\missing_integration_notices', '__return_false' );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment