Do not load the matomo script if the is no URL specified

This commit is contained in:
Alex Tselegidis 2022-05-26 14:51:46 +02:00
parent 906c91331f
commit 10e885225e
1 changed files with 23 additions and 18 deletions

View File

@ -4,6 +4,8 @@
*/
?>
<?php if ( ! empty($matomo_analytics_url)): ?>
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
@ -20,5 +22,8 @@
s.parentNode.insertBefore(g, s);
})();
</script>
<noscript><p><img src="<?= $matomo_analytics_url ?>matomo.php?idsite=1&amp;rec=1" style="border:0;" alt=""/></p>
</noscript>
<?php endif ?>