SearchWP

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

<?php
// Disable missing integrations notice in SearchWP.
add_filter( 'searchwp\missing_integration_notices', '__return_false' );

How to use this code