You need to include a privacy text and an associated opt-out link when your website is actively tracking.
Where can I find the privacy text and the associated opt-out link?
You can find the privacy text and the opt-out link in your profile under the Tracking Code item.
How do I integrate the opt-out link into my website?
You can simply copy the text and link from the Tracking Code section and paste it into your page. The HTML code should then look like this, for example:
<!DOCTYPE html>
<html>
<head>
<title> Wiredminds OptOut </title>
</head>
<body>
<h1> Privacy Notice</h1>
<a onclick=”alert(‘Your visits will now no longer be tracked.’);”
href=”javascript:wiredminds.optOut()”>Exclude from tracking</a>
</body>
</html>
How do I embed the opt out link in WordPress?
In WordPress, you create a text block and include the opt out link inside a <Code> tag. This way the code will not be converted to plain text.
<code> <a onclick="alert('Your visits will now no longer be tracked.');"
href="javascript:wiredminds.optOut()">Excluded from tracking</a> </code>
How do I embed the opt out link in Typo3?
In Typo3, select a text area and choose the “Code” display (see screenshot) and insert the optout link. This way the code will not be converted into plain text.
<p><a href="javascript:wiredminds.optOut()"
onclick="alert('Your visits will now no longer be tracked.');
" data-htmlarea-external="1" rtekeep="1">Excluded from tracking</a></p>