My website is https://europeanmade.eu/ and I'm trying to get some analytics up and running. The code from seal metrics I'm trying to use is:
Code: Select all
<script>
/* SealMetrics Tracker Code */
(function() {
var options = {
account: '67d58b254d01dc6d1226afb9',
event: 'pageview',
use_session: 1,
};
var url="//app.sealmetrics.com/tag/v2/tracker";function loadScript(callback){var script=document.createElement("script");script.src=url;script.async=true;script.onload=function(){if(typeof callback==="function"){callback();}};script.onerror=function(){console.error("Error loading script: "+url);};document.getElementsByTagName("head")[0].appendChild(script);}loadScript(function(){options.id=Math.floor((Math.random()*999)+1);if(window.sm){var instance=new window.sm(options);instance.track(options.event);}else{console.error("sm2 plugin is not available");}});
})();
/* End SealMetrics Tracker Code */
</script>

It also says on the website : Replace values with your own data; And I'm trying to figure out what they mean by that because I'm trying to embed their script?
Sorry if this is a bad question, I'm not very knowledgable. Thank you very much for your help in advance