forum.coppermine-gallery.net

Support => cpg1.6.x Support => cpg1.6 miscellaneous => Topic started by: andyschlei on July 13, 2022, 01:30:48 am

Title: How to Install New Google Analytics gtak.js file
Post by: andyschlei on July 13, 2022, 01:30:48 am
I am trying to track my gallery in the new Google Analytics as the old one is being deprecated.  To collect data, they require you to put this snippet of code into page in the <head> section of the HTML.

How would I do this in my Coppermine installation?

Here is the code

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

  gtag('config', 'X-XXXXXXXXX');
</script>
Title: Re: How to Install New Google Analytics gtak.js file
Post by: phill104 on July 13, 2022, 09:58:49 pm
Whatever theme you are using contains a number of files theme.PHP, style.css and template.html . The template.html is where you need to place your code.

https://coppermine-gallery.net/docs/curr/en/theme.htm#theme_files
Title: Re: How to Install New Google Analytics gtak.js file
Post by: andyschlei on July 15, 2022, 12:40:16 am
Great, thank you!