AJAX search from P2P_Box broken ( fix?)
-
Hi Mikko
When I enable the admin search option, I stop having results in my P2P_box where you can search for posts.
See https://www.ads-software.com/extend/plugins/posts-to-posts/ for details on this plugin by Scribu.I did some debugging and boiled it down to some problems i seem to be having with regards to the ‘the_posts’ filter and its checks on whether or not its an searchable query.
This is my current (crappy)work-around which seems to at least fix this problem, but could cause other problems instead (haven’t checked yet)init.php line 4:
add_filter(‘the_posts’, ‘relevanssi_query’, 9, 2);search.php line 36:
if ( $query->is_search ) {
$wp_query = apply_filters(‘relevanssi_modify_wp_query’, $query);
$posts = relevanssi_do_query($wp_query);
}
elseif ($search_ok) {
$wp_query = apply_filters(‘relevanssi_modify_wp_query’, $wp_query);
$posts = relevanssi_do_query($wp_query);
}Please let me know if you get similar results when combining the P2P plugin and Relevanssi and enabling the admin search option.
Yst?v?llisin terveisin,
Ruud
- The topic ‘AJAX search from P2P_Box broken ( fix?)’ is closed to new replies.