Skip to main contentSkip to footer

This update matches Relevanssi Premium 1.15.1 and contains some improvements to how Relevanssi works. The biggest change is the added support for taxonomy queries using field set to name.

Here’s the full list of changes:

  • Improved the way highlighting handles HTML tags, especially when highlighting on post pages.
  • The throttle limit setting was removed from the settings page for causing trouble. If you need to change it, update relevanssi_throttle_limit option directly.
  • Relevanssi didn’t support tax_queries with field set to name. That works now.
  • Much faster way of showing the 25 most common words in the index. If you’ve disabled this feature because it was so slow, try enabling it – you might be surprised!

3.5.9 was immediately followed by 3.5.9.1 because there were problems with the plugin repository syncing. The versions are almost identical: 3.5.9.1 makes few more strings translatable, that’s all.

Your account

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

Search

Popular Resources

Filtering results by category
In order to filter search results by category, use the following code: $url = get_bloginfo('url'); $url = esc_attr(add_query_arg(array('cat' => '10',…
Elementor

…variable, e_search_props. If that appears in the search results URL (like this: https://www.example.com/?s=term&e_search_props=3881765-2885), try removing the e_search_props variable (like this: https://www.example.com/?s=term). If that helps, the problem with your search is right there. One solution is to check what the parameter includes and then overriding those query parameters in a filter……apply the same query filter, and the results will appear there in the same order as well. Highlight in documents breaks entrance animations In some cases enabling Relevanssi in-document highlighting breaks pictures with entrance animations. You can add this function to your site to fix the problem. add_filter( ‘relevanssi_clean_excerpt’, function(……function. For example, if you’re trying to make attachment searching work and e_search_props is setting the post_type and post_status parameters to exclude attachments, you can do this: add_filter( ‘relevanssi_modify_wp_query’, function( $query ) { $query->set( ‘post_types’, ‘any’ ); $query->set( ‘post_status’, array( ‘publish’, ‘inherit’ ) ); return $query; } ); This will…

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