For many years, I have used Google Analytics to track the web cards viewed on my web site. To do that I added as a footer script to each web card crated by Reunion. With Google phasing out Analytics (in July 2023) to a new Analytics 4 with Tag managers, Google wants each web card to be encoded with a new script below the <head> element and just before the <body>. Their recommendation is to Install the Google tag manually. Below is the Google tag for my account.
Copy and paste it in the code of every page of your website, immediately after the <head> element. Don’t add more than one Google tag to each page.[INDENT]
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DSET5Y13ZV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-DSET5Y13ZV');
</script>
[/INDENT]
How can I program the Reunion Web Report generator to do so?
Thanks
Alain Farhi
Reunion 13.0 built 221018
Copy and paste it in the code of every page of your website, immediately after the <head> element. Don’t add more than one Google tag to each page.[INDENT]
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DSET5Y13ZV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-DSET5Y13ZV');
</script>
[/INDENT]
How can I program the Reunion Web Report generator to do so?
Thanks
Alain Farhi
Reunion 13.0 built 221018
Comment