Skip to content

Instantly share code, notes, and snippets.

@webdados
Last active January 5, 2022 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webdados/bdab78778d0d7e86200101b12ccdeec9 to your computer and use it in GitHub Desktop.
Save webdados/bdab78778d0d7e86200101b12ccdeec9 to your computer and use it in GitHub Desktop.
Make Flatsome live search work with Relevanssi
<?php
add_filter( 'relevanssi_search_ok', 'flatsome_live_search_relevanssi_search_ok' );
function flatsome_live_search_relevanssi_search_ok( $search_ok ) {
if ( is_ajax() && isset( $_GET['action'] ) && trim( $_GET['action'] ) == 'flatsome_ajax_search_products' ) {
return true;
}
return $search_ok;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment