Scott W. Bradley

in which scottwb thinks out loud

Fork me on GitHub

Tracking Facebook Ads With Google Analytics

| Comments

By default, Google Analytics does not do a very good job at categorizing traffic you receive from placing an ad on an external ad network such as Facebook Ads. In the case of Facebook in particular, traffic referred from your ad will show up as “direct” or generically as “facebook” because of they way the redirect the user to your ad through their own analytics back-end.

The intended way to track through this redirection is using “UTM codes”: parameters appended to the URL you use in your ad, that lets Google track that user’s behavior on your site for the lifecycle of their visit. This is great, because you want to know more than just how many people have clicked on your ad. You want to know what they do once they get to your site (e.g.: if they buy something).

Below is a quick primer on getting setup so that your Facebook Ads can be properly tracked with Google Analytics.

1) Add these lines to your existing Google Analytics javascript code:

google_analytics.diff View Gist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 <script type="text/javascript">
   var _gaq = _gaq || [];
   _gaq.push(['_setAccount', 'UA-XXXXXXXX-X']);
+  _gaq.push(['_setCampSourceKey', 'utm_source']);
+  _gaq.push(['_setCampMediumKey', 'utm_medium']);
+  _gaq.push(['_setCampContentKey', 'utm_content']);
+  _gaq.push(['_setCampTermKey', 'utm_keyword']);
+  _gaq.push(['_setCampNameKey', 'utm_campaign']);
   _gaq.push(['_trackPageview']);

   (function() {
     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
   })();
 </script>

2) Build a URL with Google Analytics URL Builder

These will be the values you can filter by in Google Analytics. For example, you might do this for an ad placed on Facebook:

  • Website URL: http://www.postonthewall.com/walls/south-beach
  • Campaign Source: facebook
  • Campaign Medium: cpc
  • Campaign Term: spring break (i.e.: your search terms)
  • Campaign Content: blank - or use for A/B testing two ads at same time
  • Campaign Name: spring_break_south_beach

3) Place your ad with Facebook

Choosing how to position your ad is outside the scope of this post. Take the URL you generated with the Google Analytics URL Builder, and make an ad on Facebook that points to it. You can start with the Facebook Ads page.

4) Bonus Points: Setup conversion goals in Google Analytics.

This is also largely outside the scope of what I intended to post here, but it’s an important step. In short, setting up conversion goals and funnels will help you calculate the ROI for your ads, and will let you figure out where you are losing users that come to your site through these ads.

You can read more about it here.

Comments