Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Organizations can add a Google Analytics tracker to their site.

Step-by-step guide

To add a Google Analytics tracker

  1. Go to Site Administration > Appearance > Additional HTML
  2. Add the snipper of code given to you by Google Analytics
  3. Click on "Save changes"


The Google Analytics code should look something like the code below, where UA-123456-XX is your organization's Google Analytics unique identifier.


<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123456-XX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'UA-123456-XX');
</script>

  • No labels