Skip to main contentSkip to footer

We have a privacy policy that covers your use of this web site and our customer data use. However, if you’re interested in how using Relevanssi affects the GDPR compliance of your own site, here we have answers for you.

In general, Relevanssi doesn’t store any information about users and doesn’t share any information outside your own server. There are, however, two exceptions.

Logging

If you enable logging, Relevanssi will log all search queries, except from those users you block in the settings. The logs will always include the user ID and if you so desire, the user IP address. It’s not currently possible to disable the logging of user IDs.

These are personal information, and need to be reported on your privacy policy, if you have search logging enabled.

Relevanssi includes tools to remove data from the logs. If you use the WordPress privacy tools to remove user’s data completely from the system, that will automatically remove all log entries with their user ID. Relevanssi can’t automatically remove log entries for searches users do when they are not logged in, as Relevanssi cannot connect IP address to user ID.

Attachment indexing

Relevanssi doesn’t share any information outside your server, except when you index attachment content. That Relevanssi can’t do on your own server. In order to index attachment content, the attachment is sent to a Relevanssi indexing server. These servers are hosted by UpCloud (their privacy policy) and are in the US or in EU. You can choose which server you use.

Indexing attachments with personal information would mean that the personal information is being shared with third parties. This is why it is forbidden to use Relevanssi attachment indexing to index files that contain personal information. We do not know what is in the files you index on our servers and thus can’t stop you from doing it, but it is still forbidden to do so.

Your account

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

Search

Popular Resources

Category filter for search results pages

Sometimes it’s nice to have a category filter on the search results pages: a simple dropdown where you can choose the category you want to show. It’s easy to create one using wp_dropdown_categories() but on a search results page, that’s slightly problematic, as it’ll include all categories, not just those……in place, there’s instead a link that removes all category filters. function rlv_category_dropdown() { global $rlv_categories_present, $wp_query; if ( ! empty( $wp_query->query_vars[‘cat’] ) ) { $url = esc_url( remove_query_arg( ‘cat’ ) ); echo “<p><a href=’$url’>Remove category filter</a>.</p>”; } else { $select = “<select id=’rlv_cat’ name=’rlv_cat’><option value=”>Choose a category</option>”; foreach (……} } asort( $rlv_categories_present ); return $hits; } Add this snippet to your site. If you want this to use WooCommerce product categories, replace the category in the get_the_terms() call with product_cat like this: $terms = get_the_terms( $hit->ID, ‘product_cat’ ); Then we can create the function that displays the dropdown….

Unyson
Unyson is a free drag & drop framework. It stores the content in a custom field fw:opt:ext:pb:page-builder:json. While Relevanssi can…
Showing only one recurring event
Some event calendar plugins do recurring events by creating many posts. That’s fine until those cloned posts fill up your…

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