Skip to main contentSkip to footer

It’s been a while from the previous Relevanssi release, and there’s plenty of fixes to all sorts of issues in this version. Nothing major, though, couple of unpleasant interface issues are fixed and there are several improvements in how highlighting works in excerpts.

Relevanssi has been tested to be compatible with WordPress 4.9.8.

Premium updates:

  • The API key option in the network options wasn’t very intuitive. It’s better now.
  • Direct attachment links in search results work better now, especially in cases where the site has moved.
  • Improved handling of certain edge cases in taxonomy search.
  • The Import / Export options tab was missing (very few people complained, so perhaps that feature is not very important…).
  • The status of the ‘Index PDF contents for parent post’ option didn’t show up correctly on the settings page.
  • When indexing custom MySQL column data, stopwords and minimum word length weren’t applied properly.
  • Fix for pinning in multisite context.
  • Removed unnecessary post types from the weight setting list.

Updates for both versions:

  • Home page links were getting the highlight parameter even though they shouldn’t. This has been fixed.
  • Added support for WP JV Post Reading Groups.
  • Improved handling of HTML entities.
  • Events Made Easy Calendar shortcodes are now removed when building excerpts.
  • set_time_limit() was removed from the indexing; it’s no longer necessary, and it can break the indexing on sites that don’t allow the use of the function.
  • relevanssi_post_title_before_tokenize filter was moved a bit so that it’s the last thing that runs before tokenizing.
  • Disabled shortcodes are handled better in the indexing: the shortcode names won’t be indexed anymore like they were before.
  • Made sure there won’t be a warning for non-numeric values when searching.
  • New filter: relevanssi_clean_excerpt lets you remove unwanted highlights from excerpts.
  • Highlighting works better with pre and code tags.
  • New filter: relevanssi_comment_author_to_index lets you filter comment author names before indexing.
  • relevanssi_comment_content_to_index doesn’t include the comment author name anymore.

The new Premium version is now available as an automatic update and from the Download page. The free version is not out yet, but will be available from the plugin repository soon.

Your account

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

Search

Popular Resources

Download Monitor: Index PDF content for parent page

Relevanssi can handle Download Monitor files without significant problems. If you want to use the “Index PDF contents for the parent page” option, there’s a problem, though. Download Monitor comes in between: the PDF post is attached to the Download Monitor dlm_download post and not the page where the [download]……grab that. $download_id = preg_replace( ‘/[^\d]/’, ”, $meta_field_value ); if ( $download_id ) { // Replace the original post_parent ID with the new one. $query = preg_replace( ‘/post_parent = \d+/’, “post_parent = $download_id”, $query ); } } return $query; } If the [download] shortcode is somewhere in the post content,……string The modified MySQL query. */ function rlv_download_monitor( $query, $post_id ) { $post_object = relevanssi_get_post( $post_id ); $id_matches = preg_match_all( ‘/\[download id=.(\d+).\]/ims’, $post_object->post_content, $matches ); if ( $id_matches ) { $download_id = implode( ‘,’, $matches[1] ); $query = preg_replace( ‘/post_parent = \d+/’, “post_parent IN ($download_id)”, $query ); } return $query;…

Avada

Avada is one of the most popular WordPress themes on the market. All post types are not found Avada has search settings, including a list of post types to show in the results. If your Avada search is not showing all post types, attachments or user profiles, the problem is…

Related Posts:

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