Aggregated and anonymized data from 80k+ sites using tarteaucitron.
clicky
requests / 30 days
22.01% consent
Clicky and GDPR: how to manage consent
Clicky is an audience measurement or analytics service. Depending on its configuration, its use may involve browser storage, tracking technologies or the transmission of data to a third-party provider.
When the configuration of Clicky requires consent, the service should only be activated after the visitor has made a choice. tarteaucitron can condition its loading on that decision.
Managing Clicky with tarteaucitron
When Clicky is integrated through tarteaucitron, its activation is managed according to the visitor's consent choice. The service can therefore be loaded only when the corresponding permission has been granted and the visitor can later change this choice through the consent interface.
Cookies and storage used by Clicky
The current tarteaucitron integration declares 8 cookies associated with Clicky:
This list corresponds to the cookies currently declared in the tarteaucitron service definition. The service provider may change its technical implementation over time.
Configuring Clicky
Add the following code to your website after initializing tarteaucitron. Replace the example values with those provided by Clicky.
<script>
tarteaucitron.user.clickyId = YOUR-ID;
tarteaucitron.user.clickyMore = function () { /* add here your optionnal clicky function */ };
(tarteaucitron.job = tarteaucitron.job || []).push('clicky');
</script>
Code to remove
Default HTML code to remove from your website:
<script type="text/javascript">
var clicky_site_ids = clicky_site_ids || [];
clicky_site_ids.push(YOUR-ID);
(function() {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//static.getclicky.com/js';
( document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0] ).appendChild( s ); })();
</script>For a complete guide, read the documentation to install tarteaucitron.js.
Privacy information
For detailed information about the processing of data by Clicky, cookies and applicable retention periods, refer to the documentation or privacy policy published by the service provider:
Frequently asked questions about Clicky
Does Clicky require consent?
It depends on how Clicky is configured and which data is processed. Audience measurement tools using non-exempt tracking technologies generally need to be conditioned on the visitor’s consent.
How does tarteaucitron block Clicky?
tarteaucitron controls the activation of Clicky according to the consent choice recorded for the visitor. The service code is triggered through tarteaucitron instead of being loaded independently from the consent manager.