Continue reading Premium 1.15.4 / Free 3.5.12

Premium 1.15.4 / Free 3.5.12

Both Relevanssi Premium and the free version have been updated. Both version include a update to the taxonomy query handling. Previous versions couldn’t handle nested tax_queries properly. That works now. There were also some issues with the post type exclusion: it didn’t work quite as expected. Premium version also includes a significant performance improvement on…

Read more Premium 1.15.4 / Free 3.5.12 0 Comment on Premium 1.15.4 / Free 3.5.12
Continue reading Premium 1.15.3.1 / Free 3.5.11.1

Premium 1.15.3.1 / Free 3.5.11.1

Relevanssi Premium 1.15.3.1 and free 3.5.11.1 are minor bug fix releases. They fix a notice about an undefined variable in 1.15.3 or 3.5.11 – nothing to worry about, but if you’ve got debug mode enabled, you’d see an error message in most searches. This version also adds two new filters that let you disable one-letter searches,…

Read more Premium 1.15.3.1 / Free 3.5.11.1 0 Comment on Premium 1.15.3.1 / Free 3.5.11.1
Continue reading Indexing private custom fields for admins only

Indexing private custom fields for admins only

I use private custom fields. I want to index them in the administration but not on the public site. How to do ? Initially this seems impossible to do with Relevanssi, but it’s possible. Doing this requires Relevanssi Premium. The free version doesn’t know which custom field matches the search term, it just knows some custom…

Read more Indexing private custom fields for admins only 0 Comment on Indexing private custom fields for admins only
Continue reading Premium 1.15.3

Premium 1.15.3

Relevanssi Premium 1.15.3 fixes many bugs and improves Relevanssi behaviour in many cases. Indexing taxonomy terms is further improved, as is highlighting HTML tags. A fairly big change is how Relevanssi handles taxonomy terms and user profiles when a post type parameter is used. Previously setting a post type parameter didn’t exclude taxonomy terms and…

Read more Premium 1.15.3 0 Comment on Premium 1.15.3
Continue reading WooCommerce: Hidden products in search

WooCommerce: Hidden products in search

Relevanssi by default shows out-of-stock and excluded from catalogue WooCommerce products in the search results, but hides those set to excluded from search (before 2.2.2 and 4.1.2 the default behaviour was to show all products). It is quite easy to make Relevanssi not display hidden products in the results. The……products from the search. This method leads to much faster indexing times. Add this to your site: add_filter( ‘relevanssi_woocommerce_indexing’, ‘rlv_woocommerce_filter’ ); function rlv_woocommerce_filter( $blocks ) { $blocks[‘outofstock’] = true; $blocks[‘exclude-from-catalog’] = true; $blocks[‘exclude-from-search’] = true; return $blocks; } There’s one key for each product visibility level, set the ones you……want to block from the search to true. Older Relevanssi versions and WooCommerce 3 WooCommerce 3 uses taxonomy terms to handle visibility. You can create a relevanssi_do_not_index filter function for these: add_filter( ‘relevanssi_do_not_index’, ‘rlv_wc3_hidden_filter’, 10, 2 ); function rlv_wc3_hidden_filter( $block, $post_id ) { if ( has_term( array( ‘exclude-from-catalog’, ‘exclude-from-search’, ‘outofstock’…

Read more WooCommerce: Hidden products in search 23 Comments on WooCommerce: Hidden products in search
Continue reading Free 3.5.9 / 3.5.9.1

Free 3.5.9 / 3.5.9.1

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…

Read more Free 3.5.9 / 3.5.9.1 0 Comment on Free 3.5.9 / 3.5.9.1