Custom search template with Oxygen builder & WPML
-
Hi Mikko,
I’m using Relevanssi + Relevanssi Live Ajax Search with Oxygen builder and WPML, without any problems.
To make it work I need to set this function:add_filter( ‘relevanssi_live_search_mode’, function() { return ‘wp_query’; } );
As you know, oxygen builder doesn’t use themes, so I wanted to customize the search-results.php and I tried to set my folder like this:
add_filter(‘relevanssi_live_search_results_template’, function ( $location ) {
return plugin_dir_path(FILE) . ‘/live-ajax-search/search-results.php’;
});Unfortunately this causes the plugin to stop working completely, due to the following errors:
PHP Warning: Attempt to read property “found_posts” on null in /…/search-results.php on line 28
PHP Warning: Undefined variable $wp_query in /…/search-results.php on line 28
PHP Warning: Undefined array key “s” in /…/search-results.php on line 82I think it’s related to ‘relevanssi_live_search_mode’ what do you think?
- The topic ‘Custom search template with Oxygen builder & WPML’ is closed to new replies.