For people searching in the future (and if you still need it, sdavid78): here is how I was able to make BeTheme and Relevanssi play nice.
The issue is that BeTheme has a function that messes with search functionality. If you edit your own functions.php within a child theme and add the following, it will disable the BeTheme function and Relevanssi will work.
if ( ! function_exists( 'mfn_search' ) ) {
function mfn_search() {}
}
Cheers
-
This reply was modified 7 years, 10 months ago by danmowchan.
-
This reply was modified 7 years, 10 months ago by danmowchan.