It seems to be a combination of removing
function searchfilter($query) {
if ($query->is_search && !is_admin() ) {
$query->set('post_type',array('product'));
}
return $query;
}
add_filter('pre_get_posts','searchfilter');
from the theme functions and disabling the FacetWP – Relevanssi integration plugin. They both have to be done for the results to work properly. Any thoughts?