Google Analytics Social Tracking – Twitter, Facebook, Google Plus and LinkedIn
In this post you will learn to track Google +1, Facebook likes, Facebook sends, Facebook unlikes, Twitter tweets, Twitter follows and LinkedIn shares in Google Analytics.
But before we move forward, you need to understand the difference between event tracking & social tracking and the difference between normal users’ interactions & social interactions:
1. Event tracking is implemented by calling the _trackEvent() method whereas social tracking is implemented by calling the _trackSocial() method.
2. Event reports are available under the ‘Behavior’ menu and Social reports are available under the ‘Acquisition’ menu in your Google Analytics account.
The ‘_TrackSocial()’ method
To send social interaction data to Google Analytics we call the _trackSocial() method wherever we have added the share button/social plugin:
_gaq.push([‘_trackSocial’, network, socialAction, opt_target]);
Here,
network => Name of the social network being tracked e.g. Facebook, Twitter, LinkedIn etc.
This parameter is required to be passed to the trackSocial method.
socialAction => Type of the social action being tracked e.g. Like, Unlike, Send, Tweet etc.
This parameter is required to be passed to the method.
opt_target => This parameter is optional.
It is a URL which receives the social action.
_trackSocial seems to track only those social sharings which were done through social plugin/share button on your website. It doesn’t seem to track re-tweets or sharing done on some third-party site or third-party plugins like Tweetmeme.
So if your blog post is tweeted 10 times via a share button on your website and then later re-tweeted 65 times then also _trackSocial counts only 10 tweets.
In short, I don’t see social interactions being tracked across the web. This is not what I was expecting from Google.
Tracking Google +1 social interactions
Step-1: Make sure you are using the latest Google Analytics Asynchronous Tracking Code on your website.
Step-2: Copy the Google +1 button code from here and paste it wherever you want to display the button on your website. Google Analytics automatically tracks the social interactions associated with Google +1s once you have installed the Google +1 button on your website. So you don’t need to place any special tracking code for Google +1 button.
Step-3: After few days/weeks, go to ‘Plugins’ report (under Traffic Sources > Social) in your Google Analytics account. Then click on the primary dimension ‘Social Source and Action’. You will see the following report (provided your tracking is set up correctly):
Get weekly practical tips on GA4 and/or BigQuery to accurately track and read your analytics data.
Tracking Facebook social interactions
For Facebook, social actions can be: ‘like’,’unlike’, ‘follow’, ‘send’,’comment’ etc.
- Through ‘like’ button a user can share your web page on his Facebook profile with just one click.
- Through ‘send’ button a user can send (share) your web page to his friends.
- Through ‘comment’ button a user can comment on any web page of your website.
Step-1: Make sure you are using the latest Google Analytics Asynchronous Tracking Code on your website.
Step-2: Upload ‘ga_social_tracking.js‘ file to your web server. You can grab this file from here.
Step-3: Enable Social Tracking by adding the following code after your Google Analytics Tracking Code and before the </head> tag:
<!-- Enabling Google Analytics Social Tracking code Starts Here -->
<script type="text/javascript" src="https://www.your-domain.com/wp-content/uploads/ga_social_tracking.js"></script>
<!-- Enabling Google Analytics Social Tracking code Ends Here -->
The final code will look like the following:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxxx-x']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- Enabling Google Analytics Social Tracking code Starts Here -->
<script type="text/javascript" src="https://www.your-domain.com/wp-content/uploads/ga_social_tracking.js"></script>
<!-- Enabling Google Analytics Social Tracking code Ends Here -->
</head>
Don’t copy past this code without modification.
Replace “UA-xxxxxx-x” with your Google Analytics account number and ‘www.your-domain.com’ with your website address where you have installed the ‘ga_social_tracking.js’ file.
Step-4: Install the Facebook ‘like’ button from here. The ‘Like’ button code will look something like this:
<fb:like send="true" show_faces="false" layout="button_count" width="150"></fb:like>
Step-5: Add following line of code just before before the <fb:like />
tag:
<script src="https://connect.facebook.net/en_US/all.js#xfbml=1&appId=501839739845103"></script><script type="text/javascript">_ga.trackFacebook();</script>
So the final code will look like this:
<script src="https://connect.facebook.net/en_US/all.js#xfbml=1&appId=501839739845103"></script><script type="text/javascript">_ga.trackFacebook();</script><fb:like send="false" layout="button_count" width="150" show_faces="false"></fb:like>
Don’t copy-paste this code without modifying it first.
Here The “#appId=xxxxxxxxxxx” is a random app ID that Facebook generates which allows you to access Insights for the button.
Don’t use my appID. When you create your own Facebook ‘like’ button, Facebook will generate an appId for you. Use that appID.
Note: The appId is not a requirement for the ‘like’ button to work.
Step-6: Copy-paste the modified Facebook ‘like’ button code wherever you want to display the Like button.
Step-7: After a few days/weeks, go to ‘Plugins’ report (under Traffic Sources > Social) in your Google Analytics account. Then click on the primary dimension ‘Social Source and Action’. You will see the following report (provided your tracking is set up correctly):
If you want to track all the social actions provided by Facebook then you need to install all the social plugins of Facebook. Get the list of plugins.
Note: you can track only those social actions for which you have installed social plugins on your website. For e.g. if you want to track Facebook comments, then you first need to install Facebook comments plugin on your website.
If you are using Universal Analytics on your website, then checkout this article to track Facebook social interaction: Tracking Facebook Social Interactions with Google Analytics and Google Tag Manager
Tracking Twitter social interactions
For Twitter, social actions can be: ‘tweet’, ‘click’, ‘follow’ etc.
Step-1: Make sure you are using the latest Google Analytics Asynchronous Tracking Code on your website.
Step-2: Make sure that the file ‘ga_social_tracking.js‘ is uploaded on your web server.
Step-3: Make sure you have enabled the Social Tracking as explained above.
Step-4: Install the official twitter button on your website. The ‘twitter’ button code will look something like this:
<!-- Twitter button code starts here -->
<a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="seohimanshu">Tweet</a><script type="text/javascript" src="https://platform.twitter.com/widgets.js"></script>
<!-- Twitter button code ends here -->
Don’t copy-past this code without modification. Use your own Twitter handle.
Step-5: Copy paste the following code just before the </head> tag:
<!-- Load Twitter JS-API asynchronously -->
<script>
(function(){
var twitterWidgets = document.createElement('script');
twitterWidgets.type = 'text/javascript';
twitterWidgets.async = true;
twitterWidgets.src = 'https://platform.twitter.com/widgets.js';
// Setup a callback to track once the script loads.
twitterWidgets.onload = _ga.trackTwitter;
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
})();
</script>
Step-6: After a few days/weeks, go to ‘Plugins’ report (under Traffic Sources > Social) in your Google Analytics account. Then click on the primary dimension ‘Social Source and Action’. You will see the following report (provided your tracking is set up correctly):
Note: You can’t track Twitter social actions through the Tweetmeme button or other Twitter type buttons.
If you are using Universal Analytics on your website, then checkout this article to track Twitter social interaction: Tracking Twitter and Linkedin Social Interactions in Google Analytics
Tracking LinkedIn social interactions
Step-1: Make sure you are using the latest Google Analytics Asynchronous Tracking Code on your website.
Step-2: Make sure that the file ‘ga_social_tracking.js’ is uploaded on your web server.
Step-3: Make sure you have enabled the Social Tracking as explained above.
Step-4: Add the following code after your Social Tracking Code and before the </head> tag:
<!-- LinkedIn Share Button tracking code starts here-->
<script type="text/javascript">
function LinkedInShare() {
_gaq.push(['_trackSocial', 'LinkedIn', 'Share']);
}
<!-- LinkedIn Share Button tracking code ends here-->
The final code will look like the following:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxxx-x']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- Enabling Google Analytics Social Tracking code Starts Here -->
<script type="text/javascript" src="https://www.your-domain.com/wp-content/uploads/ga_social_tracking.js"></script>
<!-- Enabling Google Analytics Social Tracking code Ends Here -->
<!-- LinkedIn Share Button tracking code starts here-->
<script type="text/javascript">
function LinkedInShare() {
_gaq.push(['_trackSocial', 'LinkedIn', 'Share']);
}
<!-- LinkedIn Share Button tracking code ends here-->
</head>
Don’t copy-past this code without modification.
Replace “UA-xxxxxx-x” with your Google Analytics account number and ‘www.your-domain.com’ with your website address where you have installed the ‘ga_social_tracking.js’ file.
Step-4: Install the official LinkedIn share button on your web page(s). The button code will look like this:
<script src="//platform.linkedin.com/in.js" type="text/javascript">
lang: en_US
</script>
<script type="IN/Share" data-counter="right"></script>
Step-5: Modify the LinkedIn button code by adding: data-onsuccess="LinkedInShare" like this:
<!-- Linkedin button & tracking code starts here -->
<script src="https://platform.linkedin.com/in.js" type="text/javascript"></script>
<script type="IN/Share" data-counter="right" data-onsuccess="LinkedInShare"></script>
<!-- Linkedin button & tracking code ends here -->
Step-6: Copy-paste the modified button code wherever you want to display the LinkedIn button.
Step-7: After a few days/weeks, go to ‘Plugins’ report (under Traffic Sources > Social) in your Google Analytics account. Then click on the primary dimension ‘Social Source and Action’. You will see the following report (provided your tracking is set up correctly):
If you are using Universal Analytics on your website, then checkout this article to track LinkedIn social interaction: Tracking Twitter and Linkedin Social Interactions in Google Analytics
Related articles
- Understanding Facebook Referral traffic in Google Analytics
- Learn to correctly track Facebook Referral traffic in Google Analytics
- Tracking Facebook ‘Likes’ and ‘Unlikes’ in Google Analytics
- Why Facebook and Google Analytics data do not match
- Complete Guide to Google Analytics for Facebook
Other articles on specialized tracking in Google Analytics
- How to see Organic Search Keywords in GA4 (Google Analytics 4)
- Google Analytics Ecommerce Tracking Tutorial
- Google Tag Manager Event Tracking Tutorial
- Google Analytics Event Tracking Tutorial
- Google Analytics Store Visits Tracking Tutorial
- Offline Conversion Tracking in Google Analytics – Tutorial
- Ecommerce Tracking Google Tag Manager (GTM) – Tutorial
- Tracking Virtual Pageviews in Google Tag Manager – Tutorial
- Google Tag Manager YouTube Video Tracking
- Google Analytics Virtual Pageviews Tutorial
- Google Analytics YouTube Integration & Analysis Tutorial
- Google Analytics for Facebook Tutorial
- Cross Domain Tracking in Google Analytics – Complete Guide
- How to use two Google Analytics codes on one page
- How to correctly use referral exclusion list in Google Analytics
- Google Analytics Calculated Metrics – Tutorial
- Creating your own Google Analytics Tag Auditing System
- Google Tag Manager Search Tracking without Query Parameter
- Tracking Google Analytics Paypal Referral and other payment gateways
- How to Track Phone Calls in Google Analytics 4 – Call Tracking Tutorial
- How to track leads in Google Analytics via CRM
- Postbacks in Google Analytics Explained
- Subscription & Recurring Revenue Analytics in Google Analytics
- Track the Impact of Google Analytics Cookie Consent on Website Traffic
- Tracking Offline Conversions in Google Ads
- Implementing Scroll Tracking via Google Tag Manager
- Scroll Depth Tracking in Google Tag Manager – Tutorial
- Site Search Tracking In Google Analytics Without Query Parameters
- Google Tag Manager Youtube Video Tracking via YouTube Video Trigger
- How to Correctly Measure Conversion Date & Time in Google Analytics
- Google Analytics Social Tracking – Twitter, Facebook, Google Plus and LinkedIn
- Cross Domain Tracking in Google Analytics – Complete Guide
- Google Analytics Linkedin & Twitter Tracking
- Creating Content Group in Google Analytics via tracking code using gtag.js
- Google Analytics Site Search Tracking via Query Parameters
- Google Analytics Site Search Tracking Tutorial
- Creating and Using Site Search Funnel in Google Analytics
- How to add Facebook Pixel to Google Tag Manager
- AMP Google Analytics Tracking – Learn to track AMP pages
- Setting up Sales Funnel across websites in Google Analytics
- Google Analytics 4 Regex (Regular Expressions) Tutorial
In this post you will learn to track Google +1, Facebook likes, Facebook sends, Facebook unlikes, Twitter tweets, Twitter follows and LinkedIn shares in Google Analytics.
But before we move forward, you need to understand the difference between event tracking & social tracking and the difference between normal users’ interactions & social interactions:
1. Event tracking is implemented by calling the _trackEvent() method whereas social tracking is implemented by calling the _trackSocial() method.
2. Event reports are available under the ‘Behavior’ menu and Social reports are available under the ‘Acquisition’ menu in your Google Analytics account.
The ‘_TrackSocial()’ method
To send social interaction data to Google Analytics we call the _trackSocial() method wherever we have added the share button/social plugin:
_gaq.push([‘_trackSocial’, network, socialAction, opt_target]);
Here,
network => Name of the social network being tracked e.g. Facebook, Twitter, LinkedIn etc.
This parameter is required to be passed to the trackSocial method.
socialAction => Type of the social action being tracked e.g. Like, Unlike, Send, Tweet etc.
This parameter is required to be passed to the method.
opt_target => This parameter is optional.
It is a URL which receives the social action.
_trackSocial seems to track only those social sharings which were done through social plugin/share button on your website. It doesn’t seem to track re-tweets or sharing done on some third-party site or third-party plugins like Tweetmeme.
So if your blog post is tweeted 10 times via a share button on your website and then later re-tweeted 65 times then also _trackSocial counts only 10 tweets.
In short, I don’t see social interactions being tracked across the web. This is not what I was expecting from Google.
Tracking Google +1 social interactions
Step-1: Make sure you are using the latest Google Analytics Asynchronous Tracking Code on your website.
Step-2: Copy the Google +1 button code from here and paste it wherever you want to display the button on your website. Google Analytics automatically tracks the social interactions associated with Google +1s once you have installed the Google +1 button on your website. So you don’t need to place any special tracking code for Google +1 button.
Step-3: After few days/weeks, go to ‘Plugins’ report (under Traffic Sources > Social) in your Google Analytics account. Then click on the primary dimension ‘Social Source and Action’. You will see the following report (provided your tracking is set up correctly):
Tracking Facebook social interactions
For Facebook, social actions can be: ‘like’,’unlike’, ‘follow’, ‘send’,’comment’ etc.
- Through ‘like’ button a user can share your web page on his Facebook profile with just one click.
- Through ‘send’ button a user can send (share) your web page to his friends.
- Through ‘comment’ button a user can comment on any web page of your website.
Step-1: Make sure you are using the latest Google Analytics Asynchronous Tracking Code on your website.
Step-2: Upload ‘ga_social_tracking.js‘ file to your web server. You can grab this file from here.
Step-3: Enable Social Tracking by adding the following code after your Google Analytics Tracking Code and before the </head> tag:
<!-- Enabling Google Analytics Social Tracking code Starts Here --> <script type="text/javascript" src="https://www.your-domain.com/wp-content/uploads/ga_social_tracking.js"></script> <!-- Enabling Google Analytics Social Tracking code Ends Here -->
The final code will look like the following:
<script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-xxxxxx-x']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <!-- Enabling Google Analytics Social Tracking code Starts Here --> <script type="text/javascript" src="https://www.your-domain.com/wp-content/uploads/ga_social_tracking.js"></script> <!-- Enabling Google Analytics Social Tracking code Ends Here --> </head>
Don’t copy past this code without modification.
Replace “UA-xxxxxx-x” with your Google Analytics account number and ‘www.your-domain.com’ with your website address where you have installed the ‘ga_social_tracking.js’ file.
Step-4: Install the Facebook ‘like’ button from here. The ‘Like’ button code will look something like this:
<fb:like send="true" show_faces="false" layout="button_count" width="150"></fb:like>
Step-5: Add following line of code just before before the <fb:like />
tag:
<script src="https://connect.facebook.net/en_US/all.js#xfbml=1&appId=501839739845103"></script><script type="text/javascript">_ga.trackFacebook();</script>
So the final code will look like this:
<script src="https://connect.facebook.net/en_US/all.js#xfbml=1&appId=501839739845103"></script><script type="text/javascript">_ga.trackFacebook();</script><fb:like send="false" layout="button_count" width="150" show_faces="false"></fb:like>
Don’t copy-paste this code without modifying it first.
Here The “#appId=xxxxxxxxxxx” is a random app ID that Facebook generates which allows you to access Insights for the button.
Don’t use my appID. When you create your own Facebook ‘like’ button, Facebook will generate an appId for you. Use that appID.
Note: The appId is not a requirement for the ‘like’ button to work.
Step-6: Copy-paste the modified Facebook ‘like’ button code wherever you want to display the Like button.
Step-7: After a few days/weeks, go to ‘Plugins’ report (under Traffic Sources > Social) in your Google Analytics account. Then click on the primary dimension ‘Social Source and Action’. You will see the following report (provided your tracking is set up correctly):
If you want to track all the social actions provided by Facebook then you need to install all the social plugins of Facebook. Get the list of plugins.
Note: you can track only those social actions for which you have installed social plugins on your website. For e.g. if you want to track Facebook comments, then you first need to install Facebook comments plugin on your website.
If you are using Universal Analytics on your website, then checkout this article to track Facebook social interaction: Tracking Facebook Social Interactions with Google Analytics and Google Tag Manager
Tracking Twitter social interactions
For Twitter, social actions can be: ‘tweet’, ‘click’, ‘follow’ etc.
Step-1: Make sure you are using the latest Google Analytics Asynchronous Tracking Code on your website.
Step-2: Make sure that the file ‘ga_social_tracking.js‘ is uploaded on your web server.
Step-3: Make sure you have enabled the Social Tracking as explained above.
Step-4: Install the official twitter button on your website. The ‘twitter’ button code will look something like this:
<!-- Twitter button code starts here --> <a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="seohimanshu">Tweet</a><script type="text/javascript" src="https://platform.twitter.com/widgets.js"></script> <!-- Twitter button code ends here -->
Don’t copy-past this code without modification. Use your own Twitter handle.
Step-5: Copy paste the following code just before the </head> tag:
<!-- Load Twitter JS-API asynchronously --> <script> (function(){ var twitterWidgets = document.createElement('script'); twitterWidgets.type = 'text/javascript'; twitterWidgets.async = true; twitterWidgets.src = 'https://platform.twitter.com/widgets.js'; // Setup a callback to track once the script loads. twitterWidgets.onload = _ga.trackTwitter; document.getElementsByTagName('head')[0].appendChild(twitterWidgets); })(); </script>
Step-6: After a few days/weeks, go to ‘Plugins’ report (under Traffic Sources > Social) in your Google Analytics account. Then click on the primary dimension ‘Social Source and Action’. You will see the following report (provided your tracking is set up correctly):
Note: You can’t track Twitter social actions through the Tweetmeme button or other Twitter type buttons.
If you are using Universal Analytics on your website, then checkout this article to track Twitter social interaction: Tracking Twitter and Linkedin Social Interactions in Google Analytics
Tracking LinkedIn social interactions
Step-1: Make sure you are using the latest Google Analytics Asynchronous Tracking Code on your website.
Step-2: Make sure that the file ‘ga_social_tracking.js’ is uploaded on your web server.
Step-3: Make sure you have enabled the Social Tracking as explained above.
Step-4: Add the following code after your Social Tracking Code and before the </head> tag:
<!-- LinkedIn Share Button tracking code starts here--> <script type="text/javascript"> function LinkedInShare() { _gaq.push(['_trackSocial', 'LinkedIn', 'Share']); } <!-- LinkedIn Share Button tracking code ends here-->
The final code will look like the following:
<script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-xxxxxx-x']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <!-- Enabling Google Analytics Social Tracking code Starts Here --> <script type="text/javascript" src="https://www.your-domain.com/wp-content/uploads/ga_social_tracking.js"></script> <!-- Enabling Google Analytics Social Tracking code Ends Here --> <!-- LinkedIn Share Button tracking code starts here--> <script type="text/javascript"> function LinkedInShare() { _gaq.push(['_trackSocial', 'LinkedIn', 'Share']); } <!-- LinkedIn Share Button tracking code ends here--> </head>
Don’t copy-past this code without modification.
Replace “UA-xxxxxx-x” with your Google Analytics account number and ‘www.your-domain.com’ with your website address where you have installed the ‘ga_social_tracking.js’ file.
Step-4: Install the official LinkedIn share button on your web page(s). The button code will look like this:
<script src="//platform.linkedin.com/in.js" type="text/javascript"> lang: en_US </script> <script type="IN/Share" data-counter="right"></script>
Step-5: Modify the LinkedIn button code by adding: data-onsuccess="LinkedInShare" like this:
<!-- Linkedin button & tracking code starts here --> <script src="https://platform.linkedin.com/in.js" type="text/javascript"></script> <script type="IN/Share" data-counter="right" data-onsuccess="LinkedInShare"></script> <!-- Linkedin button & tracking code ends here -->
Step-6: Copy-paste the modified button code wherever you want to display the LinkedIn button.
Step-7: After a few days/weeks, go to ‘Plugins’ report (under Traffic Sources > Social) in your Google Analytics account. Then click on the primary dimension ‘Social Source and Action’. You will see the following report (provided your tracking is set up correctly):
If you are using Universal Analytics on your website, then checkout this article to track LinkedIn social interaction: Tracking Twitter and Linkedin Social Interactions in Google Analytics
Related articles
- Understanding Facebook Referral traffic in Google Analytics
- Learn to correctly track Facebook Referral traffic in Google Analytics
- Tracking Facebook ‘Likes’ and ‘Unlikes’ in Google Analytics
- Why Facebook and Google Analytics data do not match
- Complete Guide to Google Analytics for Facebook
Other articles on specialized tracking in Google Analytics
- How to see Organic Search Keywords in GA4 (Google Analytics 4)
- Google Analytics Ecommerce Tracking Tutorial
- Google Tag Manager Event Tracking Tutorial
- Google Analytics Event Tracking Tutorial
- Google Analytics Store Visits Tracking Tutorial
- Offline Conversion Tracking in Google Analytics – Tutorial
- Ecommerce Tracking Google Tag Manager (GTM) – Tutorial
- Tracking Virtual Pageviews in Google Tag Manager – Tutorial
- Google Tag Manager YouTube Video Tracking
- Google Analytics Virtual Pageviews Tutorial
- Google Analytics YouTube Integration & Analysis Tutorial
- Google Analytics for Facebook Tutorial
- Cross Domain Tracking in Google Analytics – Complete Guide
- How to use two Google Analytics codes on one page
- How to correctly use referral exclusion list in Google Analytics
- Google Analytics Calculated Metrics – Tutorial
- Creating your own Google Analytics Tag Auditing System
- Google Tag Manager Search Tracking without Query Parameter
- Tracking Google Analytics Paypal Referral and other payment gateways
- How to Track Phone Calls in Google Analytics 4 – Call Tracking Tutorial
- How to track leads in Google Analytics via CRM
- Postbacks in Google Analytics Explained
- Subscription & Recurring Revenue Analytics in Google Analytics
- Track the Impact of Google Analytics Cookie Consent on Website Traffic
- Tracking Offline Conversions in Google Ads
- Implementing Scroll Tracking via Google Tag Manager
- Scroll Depth Tracking in Google Tag Manager – Tutorial
- Site Search Tracking In Google Analytics Without Query Parameters
- Google Tag Manager Youtube Video Tracking via YouTube Video Trigger
- How to Correctly Measure Conversion Date & Time in Google Analytics
- Google Analytics Social Tracking – Twitter, Facebook, Google Plus and LinkedIn
- Cross Domain Tracking in Google Analytics – Complete Guide
- Google Analytics Linkedin & Twitter Tracking
- Creating Content Group in Google Analytics via tracking code using gtag.js
- Google Analytics Site Search Tracking via Query Parameters
- Google Analytics Site Search Tracking Tutorial
- Creating and Using Site Search Funnel in Google Analytics
- How to add Facebook Pixel to Google Tag Manager
- AMP Google Analytics Tracking – Learn to track AMP pages
- Setting up Sales Funnel across websites in Google Analytics
- Google Analytics 4 Regex (Regular Expressions) Tutorial
My best selling books on Digital Analytics and Conversion Optimization
Maths and Stats for Web Analytics and Conversion Optimization
This expert guide will teach you how to leverage the knowledge of maths and statistics in order to accurately interpret data and take actions, which can quickly improve the bottom-line of your online business.
Master the Essentials of Email Marketing Analytics
This book focuses solely on the ‘analytics’ that power your email marketing optimization program and will help you dramatically reduce your cost per acquisition and increase marketing ROI by tracking the performance of the various KPIs and metrics used for email marketing.
Attribution Modelling in Google Analytics and BeyondSECOND EDITION OUT NOW!
Attribution modelling is the process of determining the most effective marketing channels for investment. This book has been written to help you implement attribution modelling. It will teach you how to leverage the knowledge of attribution modelling in order to allocate marketing budget and understand buying behaviour.
Attribution Modelling in Google Ads and Facebook
This book has been written to help you implement attribution modelling in Google Ads (Google AdWords) and Facebook. It will teach you, how to leverage the knowledge of attribution modelling in order to understand the customer purchasing journey and determine the most effective marketing channels for investment.