searchwp\missing_integration_notices
Since: 4.0.0
Table of Contents
By default SearchWP will check to see if there are any missing integration Extensions. You can disable that behavior with this hook.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Boolean | $enabled |
true |
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Disable missing integrations notice
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Disable missing integrations notice in SearchWP. | |
add_filter( 'searchwp\missing_integration_notices', '__return_false' ); |