Hi,
on 2, i changed this line
if ( $wp_query->is_search && $bsearch_settings['seamless'] && !is_admin() ) {
to
if ( $wp_query->is_search && $wp_query->is_main_query() && $bsearch_settings['seamless'] && !is_admin() ) {
And i deleted line 960 (not 390) Sorry.
on 1, i changed the weighting of the title to 10 and content 0. -> no changes.
I changed the code to
$sql .= "AS score FROM ".$wpdb->posts." WHERE MATCH (post_title) AGAINST ('%s' {$boolean_mode} ) AND post_status = 'publish' ";
and removed
$sql .= "(MATCH(post_content) AGAINST ('%s' {$boolean_mode} ) * %d ) ";
this line and it changes nothing.
Thanks for your answer.
Vanessa