This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sie können die Erfassung Ihrer Daten durch Google Analytics verhindern, indem Sie auf folgenden Link klicken. Es wird ein Opt-Out-Cookie gesetzt, der die Erfassung Ihrer Daten bei zukünftigen Besuchen dieser Website verhindert: <a onclick="alert('Das Tracking durch Google Analytics wurde in Ihrem Browser für diese Website deaktiviert');" href="javascript:gaOptout()">Google Analytics deaktivieren</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function() { | |
| var referrer; | |
| if({Page Path}}.indexOf('/danke-fuer-die-bestellung/') > -1){ | |
| referrer = null; | |
| } else { | |
| referrer = document.referrer; | |
| } | |
| return referrer; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function() { | |
| // Callback für Google Analytics zum Entfernen der utm/ Kampagnenparameter | |
| return function() { | |
| if (!window.history.replaceState) { return; }; | |
| var cleanSearch = window.location.search | |
| .replace(/utm_[^&]+&?/g, '') // utm Parameter werden aus der URL entfernt | |
| .replace(/&$/, '') // entfernt ein überflüssiges & am Ende | |
| .replace(/^\?$/, '') // entfernt ein überflüssiges Fragezeichen am Ende | |
| ; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Verifying that "michaeljanssen.id" is my Blockstack ID. https://onename.com/michaeljanssen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Interne Besucher ausschließen</title> | |
| <META NAME="ROBOTS" CONTENT="NOINDEX, FOLLOW"> | |
| <meta http-equiv="refresh" content="5; url=/" /> | |
| <script> | |
| //<![CDATA[ | |
| (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function deleteReferral(referrer) { | |
| // More info: go.zedwoo.de/deleteReferral | |
| // To specifically mean the dot, use \\. | |
| // It should start with regex: Add ^ at beginning | |
| // It should end with regex: Add $ at end | |
| // Optional character: Add ? after character | |
| var referrals = [ | |
| 'slashless.com$', |