Showing posts with label Google Analytics. Show all posts
Showing posts with label Google Analytics. Show all posts

Friday, April 19, 2019

Tracking Form Submissions

This is to send an event to Google Analytics when the contact form is submitted, with the following data:
  • Event category: Form Submission
  • Event action: Form Submitted
  • Event label: Form ID: [Form ID]
When there are multiple forms on the website and if you want to distinguish between forms, the event label will be replaced with the ID of the form is submitted.

Enable the required variables

Go to the Variables screen and enable the built-in variables called Form Element and Form ID by ticking the checkbox. At least one form variable must be enabled to ensure GTM records form submissions.




Create a trigger

Go to the Triggers screen and create a new trigger called Form Submission, trigger type as Form Submission.


Then you can choose if you want the trigger to fire on all form submissions or specific forms. If you want to fire on specific forms, click on SOme Forms radio button checked, then save the trigger. In the appeared text boxes you can specify conditions.



Create a tag

Create a Universal Analytics tag to fire the event to Google Analytics.
Go to the tags screen and create a tag called GA Form Submission Tag.
Choose the Universal Analytics tag type.
Enter your Google Analytics property ID.
Select Event from the Track Type dropdown menu.
Enter your event category, action and label values as appropriate (remember to use the Form ID variable in the event label).
Finally, attach the created Form Submission trigger to the tag.




Now you can check whether the tag is firing correctly, by submitting the form.

Saturday, December 1, 2018

Tracking Outgoing Link Clicks

 This is to record events in Google Analytics whenever someone clicks an outbound link on our website.

  • Event Category: Outside Interactions
  • Event Action: Outbound Link Clicked
  • Event Label: [Click URL]
Google Tag Manager can detect DOM events triggered by the browser such as clicks on elements and form submissions. This is known as Auto-Event tracking, because we are listening for default events and not having to write any additional code on the website.
To accomplish our goal, we can listen for all clicks on <a> elements, where the HREF attribute does not contain our domain name.

Enable the Click URL variable

In order to determine if a link is an internal or outbound one, we need to know the value of the HREF attribute. GTM can automatically record this and set it in a variable.

Go to the Variables screen and then click the Configure button.


Check the Click URL checkbox and then close the popup window. After that, you’ll see the Click URL variable will be available under the Built-In Variables table.

Create a trigger

First, create a trigger which will only fire when an outbound link is clicked. Click the Triggers menu item and then the New button.
Name your trigger  Click - Outbound Link.
Click the ‘Choose a trigger type to begin…’ text and select Just Links in the menu that appears.


We need to have the trigger to fire on outbound link clicks, not all link clicks, so need to select the Some Link Clicks radio button. In the appeared boxes, add a condition where Click URL does not contain store.com. Then save the trigger. Now this created trigger can be used to fire any tags we only want to fire when outbound links are clicked.


Create a tag

Create a new Universal Analytics tag, giving it the name GA Outbound Link Click.
Then enter your Google Analytics property ID, and then change Track Type from Pageview to Event.
Set the event category to Outside Interactions.
Set event action to Outbound Link Clicked.
Set event label to the Click URL variable (click on the brick icon to the right of the input field for a list of available variables). Once inserted, the variable name is surrounded by double curly braces. This means this field will be replaced at run-time with the action value of the clicked URL.


Set the trigger

In the Triggering section, click the pencil icon and select the Click - Outbound Link trigger we created earlier. Then save the tag.


Now you can check that the GTM debugger which shows your tag firing when you click on the links other than store.com.

Friday, November 30, 2018

Tracking all page views with Google Analytics

This will track all the page views.

Create a new tag
Click on the Tags menu and hit the ‘NEW’ button. Give your tag the name as ‘GA Base Tag’.











Choose tag type
Click on the ‘Choose a tag type to begin setup’ text and select ‘Universal Analytics’ from the tag library.














Configure tag options
Enter your Google Analytics property ID in the ‘Tracking ID’ field (this can be found in your Google Analytics account).















Set the trigger
Select the 'All Pages' trigger, so GTM knows to deploy this tag on all pages.





Your tag looks like the below, then click the save button. Your tag is now created!


Configure a Google Tag Manager Account and Container

To create a GTM account and container :


Navigate to Google Tag Manager:
Go to https://tagmanager.google.com and log in with your Google account.

Enter an account name: Give your account name.


Enter a container name: Give your container name.











Create the container:
Click on the create button. Your Google Tag Manager container will be created, and you’ll be given with some HTML script code. This code must be placed on every page of your website.
















Click OK to close the pop-up window and then you’ll be taken to the GTM admin screen.