Heyday's standard analytics module to be used across all sites requiring analytics
First, add details to SilverStripe configuration; for instance by creating an analytics.yml file with the following details:
Page:
extensions:
- Heyday\Analytics\AnalyticsExtension
SilverStripe\Core\Injector\Injector:
AnalyticsService:
class: Heyday\Analytics\GoogleTagManagerProvider
constructor:
0: 'GTM-XXXXX'
For Google Tag Manager AnalyticsID will be something like:
GTM-XXXXX
For Google Analytics AnalyticsID will be something like:
UA-XXXXXXXXX-X
Analytics for the site can now be included in a SilverStripe template simply with the following code in the relevant .ss file:
{$AnalyticsCode.RAW}
Google Tag Manager code should be set as high in the <head>
of the page as possible:
<head>
<title>Page Title</title>
<base href="http://website.dev/"><!--[if lte IE 6]></base><![endif]-->
{$AnalyticsCode.RAW}
However, if you do have meta tags that set the charset or http-equiv attributes, you'll want them to be at the very top of head, since browsers expect them to be among the first characters of an HTML document.
Google Tag Manager no script tag is now separate from the Tag Manager container. To use it in your template, just call the variable TagManagerNoScript
</head>
<body>
{$TagManagerNoScript}
...
Google Analytics Code code should be set just after the <body>
tag:
</head>
<body>
{$AnalyticsCode}
...
If you have a Google Tag Manager account, you can verify ownership of a site using your Google Tag Manager container snippet code.
To verify ownership using Google Tag Manager, choose Google Tag Manager in the verification details page for your site, and follow the instructions shown.
When copying Tag Manager code:
For more information, check out this page: https://support.google.com/webmasters/answer/35179
Module rating system helping users find modules that are well supported. For more on how the rating system works visit Module standards
Score not correct? Let us know there is a problem