Even though Trackboxx is a privacy-compliant solution and does not require a separate consent requirement, you should expand your privacy policy accordingly.
We have created a corresponding text that you can copy to include in your privacy policy.
Text for your privacy policy
<h3>Web Analytics Service Trackboxx</h3>
<p>
We use the web analytics service <a href="https://trackboxx.com/" target="_blank">Trackboxx</a>This allows us to statistically evaluate visitor access and analyze the use of our website.
The data is anonymized for this purpose, stored on a server in Germany, and complies with GDPR regulations.
</p>
<p>
We do not use cookies or store personal data for the analysis. Instead, your IP address is used to generate a code,
which is then assigned to an anonymous user ID as long as you are on our website. This data cannot be assigned to a specific
individual and is encrypted with a code that changes daily. It is therefore not possible to “recognize” you when you visit
our website again.
</p>
<p>
Cross-page tracking, linking of the data with other sources, or transfer of information to third parties does not take place.
</p>
<p>
The legal basis for processing is Article 6, Paragraph 1, Letter f of the GDPR. Our legitimate interest lies in the needs-based design and optimization of our website.
</p>
End of Trackboxx Privacy Policy
Code language: HTML, XML (xml)
Optional - integration of an opt-out.
The inclusion of an opt-out is optional – meaning, from our perspective, it is not strictly necessary. In case of doubt, it is always recommended to consult with a data protection expert.
By integrating an opt-out, visitors can actively object to tracking by Trackboxx by activating a "Toogle button".
To display this option you can include the following code in your page:
You can prevent Trackboxx from collecting your data at any time by clicking the following toggle switch.
<label class="tb-switch">
<input type="checkbox" data-domain="TB-INSERT-YOUR-TRACKING-ID-HERE" id="tbTrackingAllowed" value="true"/>
<span class="tb-slider tb-round"></span>
</label>
<span id="trackingStatus">Allow Tracking</span>
<script type="text/javascript">
function tbInitTrackingCheckBox(id) {
var checkBox = document.getElementById(id);
var statusText = document.getElementById(trackingStatus');
checkBox.checked = trackboxxHelper.trackingEnabled();
statusText.textContent = checkBox.checked ? 'My visitor data is included in the web analysis..' : 'My visitor data is not included in the web analysis.';
checkBox.onclick = function () {
this.checked ? trackboxxHelper.enableTracking() : trackboxxHelper.enableTracking('no');
statusText.textContent = this.checked ? 'My visitor data is included in the web analysis..' : 'My visitor data is not included in the web analysis.';
};
}
document.addEventListener("tbScriptLoaded", function () {
tbInitTrackingCheckBox('tbTrackingAllowed');
});
</script>Code language: HTML, XML (xml)
Important! To include the opt-out option, you must use the latest version of the Trackboxx tracking script!
