Skip to main contentSkip to footer

Premium 1.10.3 and free 3.1.2

Another quick bug fix release, correcting problems caused by the recent upgrades.

  • Exclude category option was broken. Fixed that.
  • Searching for a non-existing category ID caused an error. Fixed that.
  • Occasional blank screens of death occurred when multibyte string operations weren’t installed. That should not happen anymore.
  • Fallback to OR search was a bit broken.
  • Premium only: New users are automatically indexed, that didn’t work before.

Your account

Not logged in. Log in to see your license details.

Search

Popular Resources

Adding extra boost for exact title matches

appearances in post content if ( stristr( $post->post_content, $query ) !== false ) { $results[ $post_id ] = $weight * 100; } // Boost exact matches in a custom field if ( get_post_meta( $post_id, ‘_sku’, true ) === $query ) { $results[ $post_id ] = $weight * 100; } }……can use this code to give a boost for exact matches in titles and post content: add_filter( ‘relevanssi_results’, ‘rlv_exact_boost’ ); function rlv_exact_boost( $results ) { $query = strtolower( get_search_query() ); foreach ( $results as $post_id => $weight ) { $post = relevanssi_get_post( $post_id ); // Boost cases where query appears…

WPML: Category exclusions
Relevanssi category exclusion setting doesn’t work properly with WPML. Here’s a bit of code from Srdjan Jocić from OnTheGoSystems that…

Related Posts:

Currently there are no related posts available.

Comment Section:

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed