Enable Flatsome search support when using Relevanssi

Enable Flatsome search support when using Relevanssi on child sites.

Snippet Type

Execute on Child Sites

Snippet

function rlv_flatsome_search_function( $query, $args, $defaults ) {
  $args['relevanssi'] = true;
  return get_posts( $args );
}

add_filter( 'flatsome_ajax_search_function', function() { return 'rlv_flatsome_search_function'; } );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.