Available since: 1.9.4
searchwp_show_conflict_notices
SearchWP has built in conflict detection that aims to uncover common conflicts with other plugins or the active theme. If you would like to prevent these conflict notices from showing in the WordPress Admin, add the following to your theme’s functions.php
:
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 | |
add_filter( 'searchwp_show_conflict_notices', '__return_false' ); |