forked from mirrors/easyappointments
Do not load the matomo script if the is no URL specified
This commit is contained in:
parent
906c91331f
commit
10e885225e
1 changed files with 23 additions and 18 deletions
|
@ -4,21 +4,26 @@
|
||||||
*/
|
*/
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<script>
|
<?php if ( ! empty($matomo_analytics_url)): ?>
|
||||||
var _paq = window._paq = window._paq || [];
|
|
||||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
<script>
|
||||||
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
|
var _paq = window._paq = window._paq || [];
|
||||||
_paq.push(['trackPageView']);
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||||
_paq.push(['enableLinkTracking']);
|
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
|
||||||
(function () {
|
_paq.push(['trackPageView']);
|
||||||
var u = "<?= $matomo_analytics_url ?>";
|
_paq.push(['enableLinkTracking']);
|
||||||
_paq.push(['setTrackerUrl', u + 'matomo.php']);
|
(function () {
|
||||||
_paq.push(['setSiteId', '1']);
|
var u = "<?= $matomo_analytics_url ?>";
|
||||||
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
|
_paq.push(['setTrackerUrl', u + 'matomo.php']);
|
||||||
g.async = true;
|
_paq.push(['setSiteId', '1']);
|
||||||
g.src = u + 'matomo.js';
|
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
|
||||||
s.parentNode.insertBefore(g, s);
|
g.async = true;
|
||||||
})();
|
g.src = u + 'matomo.js';
|
||||||
</script>
|
s.parentNode.insertBefore(g, s);
|
||||||
<noscript><p><img src="<?= $matomo_analytics_url ?>matomo.php?idsite=1&rec=1" style="border:0;" alt=""/></p>
|
})();
|
||||||
</noscript>
|
</script>
|
||||||
|
|
||||||
|
<noscript><p><img src="<?= $matomo_analytics_url ?>matomo.php?idsite=1&rec=1" style="border:0;" alt=""/></p>
|
||||||
|
</noscript>
|
||||||
|
|
||||||
|
<?php endif ?>
|
||||||
|
|
Loading…
Reference in a new issue