Skip to main contentSkip to footer

A small change in 1.13.4 broke the multisite search. 1.13.5 fixes that. It only fixes an error message triggered by empty lines in the synonym settings box. Now you can have as many empty lines there as you wish.

Get the new version from the Download page.

Your account

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

Search

Popular Resources

WooCommerce 4.4 problems

Updating WooCommerce to version 4.4 breaks Relevanssi searches. After updating WooCommerce to version 4.4, Relevanssi searches no longer find results. This problem is caused by changes in WooCommerce. Those who are interested in the details can go read the GitHub issue I created. For those interested in solving the problem,……the next version of Relevanssi will include a fix and meanwhile, you can fix the problem by adding this to your site: add_action( ‘woocommerce_before_shop_loop’, ‘relevanssi_wc_reset_loop’ ); function relevanssi_wc_reset_loop() { global $wp_query; if ( $wp_query->is_search ) { wc_reset_loop(); } } This little function fixes the problem in most cases (please let…

WooCommerce: Hidden products in search

…best way is to unindex the products so that they don’t appear in the index at all. How that is done, depends on the version of WooCommerce and Relevanssi you’re using. Relevanssi 4.0.9 / Premium 2.1.5 and WooCommerce 3 Versions 4.0.9 and 2.1.5 introduced a better way to block excluded……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’…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…

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