Viewing 4 replies - 1 through 4 (of 4 total)
  • Follow

    Plugin Contributor pronskiy

    (@pronskiy)

    Hey folks,

    This can happen because of conflict with some other plugins or custom themes that do not respect WordPress’ hook system.

    I can help debug and solve your problem if you reach me out by email ([email protected]) and provide with more information.

    Thread Starter ghp123

    (@ghp123)

    Thanks for your help @pronskiy

    Didn’t expect Better search to be an issue but now it works great again ??

    Plugin Contributor pronskiy

    (@pronskiy)

    Just in case someone encounters the same conflict with Better Search plugin, here is the compatibility fix that needs to be added to functions.php file:

    
    function fix_better_search_with_search_exclude( $str ) {
    ? ? return implode(', ', get_option('sep_exclude', array()));
    }
    add_filter( 'bsearch_get_option_exclude_post_ids', 'fix_better_search_with_search_exclude' );
    
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Plugin no longer working for me’ is closed to new replies.