mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
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,6 +4,8 @@
|
||||||
*/
|
*/
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
<?php if ( ! empty($matomo_analytics_url)): ?>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
var _paq = window._paq = window._paq || [];
|
var _paq = window._paq = window._paq || [];
|
||||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||||
|
@ -20,5 +22,8 @@
|
||||||
s.parentNode.insertBefore(g, s);
|
s.parentNode.insertBefore(g, s);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<noscript><p><img src="<?= $matomo_analytics_url ?>matomo.php?idsite=1&rec=1" style="border:0;" alt=""/></p>
|
<noscript><p><img src="<?= $matomo_analytics_url ?>matomo.php?idsite=1&rec=1" style="border:0;" alt=""/></p>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
|
||||||
|
<?php endif ?>
|
||||||
|
|
Loading…
Reference in a new issue