Privacy and Consent

Privacy FAQ

How does Findify track visitors on my website?

Findify use anonymous visitor IDs stored in the cookies and on some platforms, such as Shopify, in the platform orders. We don’t know who the customers are and we do not collect or save any private data.

What kind of data does Findify collect about my customers?

Findify does not do not collect any personal identifiable information (PII). We store data that is only relating to search-related activity (this includes recommendations and smart collections as well) from your customers.

Why does Findify collect this anonymous data on my website?

We use this data for two purposes:

  • Machine learning: We use the product view and conversion information in order to automatically calculate the popularity score of the different products on your site. This way, the most relevant and popular products are returned to customers in the autocomplete and search results.
  • Revenue tracking: In order to accurately track what revenue Findify generated, we need to track purchases and tie them to the relevant search queries.

Is Findify secure?

Even though a system is never 100% hermetically secure, we follow the most strict industry standards to make sure our systems and all the data we gather are safe and secure. We also do not store any payment information, which further reduces any possible risk.

How can the end-consumer find the _findify_uniq and the _findify_visit cookies values?

The shopper must open the Inspector in their browser by clicking right on a page and select "Inspect". Go to the tab Console, and copy/paste this Javascript snippet:

window.findifyCallbacks.push(function(findify) {
  alert("_findify_uniq = " + findify.analytics.user.uid + " \n_findify_visit = " + findify.analytics.user.sid);
})

How do I deal with a personal information access request with Findify?

Send an email to [email protected] with the following details:
Subject: Personal Information Access Request
Content:
Store URL = mystore.com
_findify_uniq = XXXXX
_findify_visit = YYYYY

These two values can be found in the shopper's browser’s local storage.

782

Email with the information needed

How do I deal with a personal information removal request with Findify?

Send an email to [email protected] with the following details:
Subject: Personal Information Removal Request
Content:
Store URL = mystore.com
_findify_uniq = XXXXX
_findify_visit = YYYYY

These two values can be found in the end-consumer browser’s local storage.

778

Email with the information needed

Right to restrict processing

To disable the Findify tracking, this Javascript snippet can be enabled on the eCommerce store by the end-consumer (by clicking "No" on the consent banner for instance):

function findifyDisableTracking() {
   var date = new Date();
   date.setTime(date.getTime() + (365*24*60*60*1000));
   var expires = "; expires=" + date.toUTCString();
   document.cookie =  "findify_optout=1" + expires + "; path=/";
}
findifyDisableTracking();

It sets a cookie called "findify_optout" to the value "1", preventing the analytics JS to send the personal data of the end-consumer.

Obtaining Consent

Findify uses cookies to provision its services to you by setting a cookie in your visitor’s
browsers. You are required to obtain consent from your visitors in order to comply with
European laws on data protection.

What do you have to do?

You will need to obtain consent to use cookies and process visitor's personal data.

There is no one-size-fits-all solution in obtaining consent from your visitors as it depends
on how you use the information gathered from them. A common approach is to use a
cookie banner.

We provide you with an example cookie banner text in order to facilitate your use of our
services:

We use cookies to analyze our traffic and to personalize content, such as search results and
recommendations. The information we collect is shared with our partners who provide these
services to us. Your visit to this site will not influence the content of other websites. [Read more in our Privacy Policy / Cookie Policy]

Please note that it is important that you customize this message in accordance with how
you use the visitors’ personal data.

What should you do if the end-consumer does not consent?

If the end-consumer does not consent, you should execute the Javascript script that opts them out of the Findify analytics tracking. We explain how to achieve that in this section.

📘

You might notice the following additional cookies:

  • _findify_cart: used to collect shopping cart products for data analytics used in suggestions and recommendations.
  • _findify_ct: used to track clicked products for data analytics used in suggestions and recommendations.

What’s Next