<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Colin Temple&#187; Social Media</title>
	<atom:link href="http://colintemple.com/writing/category/social-media/feed/" rel="self" type="application/rss+xml" />
	<link>http://colintemple.com/writing</link>
	<description>Business analyst, philosophy student</description>
	<lastBuildDate>Thu, 12 Jan 2012 01:26:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Track LinkedIn Share Buttons in Google Analytics</title>
		<link>http://www.napkyn.com/blog/2011/08/02/linkedin-share-buttons-google-analytics/</link>
		<comments>http://www.napkyn.com/blog/2011/08/02/linkedin-share-buttons-google-analytics/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 15:03:53 +0000</pubDate>
		<dc:creator>Colin Temple</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[Web Tracking]]></category>
		<category><![CDATA[event tracking]]></category>

		<guid isPermaLink="false">http://www.napkyn.com/?p=593</guid>
		<description><![CDATA[I&#8217;ve been building up a technical post series on tracking social media hook-ups in Google Analytics. I wrote about tracking Google +1 Votes before Google automated it. After they unveiled new Social reports in GA, I followed up with an update on tracking Facebook Like buttons. Next on the docket: LinkedIn Sharing  &#8230; because as [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-595" style="float: right; margin: 0 0 1em 1em;" title="LinkedIn tracking in Google Analytics" src="http://www.napkyn.com/n/wp-content/uploads/2011/07/linkedin-share-GA.png" alt="" width="148" height="155" />I&#8217;ve been building up a technical post series on tracking social media hook-ups in Google Analytics. I wrote about <a href="http://www.napkyn.com/blog/2011/06/02/track-google-plus-one-buttons-google-analytics/">tracking Google +1 Votes</a> before Google automated it. After they unveiled new Social reports in GA, I followed up with an update on <a href="http://www.napkyn.com/blog/2011/07/06/track-facebook-like-google-analytics/">tracking Facebook Like buttons</a>. Next on the docket: LinkedIn Sharing  &#8230; because as analysts, to be ready to answer the tough questions, you really should be <a href="http://www.napkyn.com/blog/2011/06/23/events-track-everything/">tracking everything</a>.</p>
<p>The method of tracking for LinkedIn buttons differs a little bit from the others I&#8217;ve posted so far. Currently, LinkedIn does not provide a callback function that executes when an action is completed &#8212; there&#8217;s no flag in the code that says &#8220;visitor shared something, now what?&#8221;. Instead, we have to build our own JavaScript function that we can bind to an action. In order to do so, this example uses <a href="http://jquery.com/">jQuery</a>, a popular JavaScript library.<span id="more-593"></span></p>
<p>The first step is to get your button code snippet from LinkedIn. LinkedIn calls this service <a href="http://www.linkedin.com/publishers">LinkedIn for Publishers</a>. When you generate the code, it will look something like this:</p>
<div style="padding: 1em; border: 1px dotted #444444; background: none repeat scroll 0% 0% #ffffff;"><code><span style="color: #0000ff;">&lt;script</span> <span style="color: #800000;">type</span>=<span style="color: #008000;">"text/javascript"</span> <span style="color: #800000;">src</span>=<span style="color: #008000;">"http://platform.linkedin.com/in.js"</span><span style="color: #0000ff;">&gt;&lt;/script&gt;&lt;script</span> <span style="color: #800000;">type</span>=<span style="color: #008000;">"in/share"</span> <span style="color: #800000;">data-url</span>=<span style="color: #008000;">"http://example.com/article/"</span> <span style="color: #800000;">data-counter</span>=<span style="color: #008000;">"top"</span><span style="color: #0000ff;">&gt;&lt;/script&gt;</span></code></div>
<p>This script from LinkedIn above generates new HTML which is inserted into the page in order to create the &#8216;Share&#8217; button and its functionality. The code generated includes a new <code><span style="color: #0000ff;">&lt;div&gt;</span></code> element, which has the class name <code>IN-widget</code>.</p>
<p>This gives us the chance to reference the generated button with a little code of our own. Using the jQuery <code><span style="color: #0000ff;">.ready</span></code> event handler &#8212; to ensure that the code does not execute until LinkedIn is finished building the button &#8212; we construct a new function that binds to the &#8220;click&#8221; event for all objects with the class name &#8216;<code>IN-widget</code>&#8216;. In this function, we include the Google Analytics social tracking code, to create a new social event.</p>
<div style="padding: 1em; border: 1px dotted #444444; background: none repeat scroll 0% 0% #ffffff;"><code><span style="color: #0000ff;">$</span>(<span style="color: #800000;">window</span>).<span style="color: #0000ff;">ready</span>(<span style="color: #0000ff;">function</span>() <span style="color: #800000;">{</span><br />
<span style="color: #0000ff;">$</span>(<span style="color: #008000;">'.IN-widget'</span>).<span style="color: #0000ff;">click</span>(<span style="color: #0000ff;">function</span>() {<br />
<span style="color: #0000ff;">_gaq</span>.<span style="color: #0000ff;">push</span>(<span style="color: #800000;">[</span><span style="color: #008000;">'_trackSocial'</span>, <span style="color: #008000;">'LinkedIn'</span>, <span style="color: #008000;">'Share'</span>, <span style="color: #800000;">window.location.href</span><span style="color: #800000;">]</span>);<br />
<span style="color: #800000;">}</span>);<br />
<span style="color: #800000;">}</span>);</code></div>
<p>This new code can be added pretty much anywhere on your page &#8212; you may want to include it right after the code LinkedIn gives you to keep them together, or put it in your header if that&#8217;s how you prefer to organize your site.</p>
<p>Note that in this example, the last parameter, <span style="color: #800000;"><code>window.location.href</code></span>, will send the current URL along as the resource shared. In different systems, you may prefer to output the URL directly, rather than through JavaScript. For instance, in <a href="http://wordpress.org/">WordPress</a>, you may replace the last parameter with the permalink for a post:</p>
<div style="padding: 1em; border: 1px dotted #444444; background: none repeat scroll 0% 0% #ffffff;"><code><span style="color: #0000ff;">_gaq</span>.<span style="color: #0000ff;">push</span>(<span style="color: #800000;">[</span><span style="color: #008000;">'_trackSocial'</span>, <span style="color: #008000;">'LinkedIn'</span>, <span style="color: #008000;">'Share'</span>, <span style="color: #008000;">'<span style="color: #000080;">&lt;?php the_permalink<span style="color: #000000;">();</span> ?&gt;</span>'</span><span style="color: #800000;">]</span>);</code></div>
<p>Now, there is one issue which must be kept in mind. In the case of the Facebook and Google +1 buttons I&#8217;ve previously shared, the social event code only fires after something has been shared. That&#8217;s the benefit of the callback function provided by those services. In the case of LinkedIn, however, what we&#8217;re really tracking are clicks to the share button &#8212; it&#8217;s possible for someone to cancel sharing after clicking the button, so you may get an inflated total.</p>
<p>With that caveat in mind, you&#8217;re all set! Once you&#8217;ve added this JavaScript, your LinkedIn shares will appear in the new social reports in Google Analytics. You can find these reports under &#8220;<strong>Visitors &gt; Social&#8221; </strong>in the new version of GA. With this, your web analyst can help you determine what impact these buttons have on your site and your business. For instance, whether frequently-shared articles get much more <em>converting </em>traffic from LinkedIn, and whether the people who share things are also the people who convert themselves.</p>
<p>Until next time,</p>
<p>Colin</p>
]]></content:encoded>
			<wfw:commentRss>http://www.napkyn.com/blog/2011/08/02/linkedin-share-buttons-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Track Facebook Like Buttons in Google Analytics</title>
		<link>http://www.napkyn.com/blog/2011/07/06/track-facebook-like-google-analytics/</link>
		<comments>http://www.napkyn.com/blog/2011/07/06/track-facebook-like-google-analytics/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 17:42:16 +0000</pubDate>
		<dc:creator>Colin Temple</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web Tracking]]></category>
		<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://www.napkyn.com/?p=491</guid>
		<description><![CDATA[I posted recently about event tracking, arguing that everything on your site should be worthy of tracking because everything on your site should be valuable. When people wonder about the value of website elements, what often comes to mind is social media. Social media is difficult to track, and as a result, it&#8217;s notoriously difficult [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-492" style="float: right; margin: 0 0 1em 1em;" title="Facebook Like Tracking" src="http://www.napkyn.com/n/wp-content/uploads/2011/05/facebook-like.png" alt="" width="200" height="199" />I posted recently about event tracking, arguing that <a href="http://www.napkyn.com/blog/2011/06/23/events-track-everything/">everything on your site should be worthy of tracking</a> because everything on your site should be valuable. When people wonder about the value of website elements, what often comes to mind is social media.</p>
<p>Social media is difficult to track, and as a result, it&#8217;s notoriously difficult to assign value to it. So, adding tracking to the few places you can is important. One of those places that we frequently encounter is the <strong>Facebook Like button</strong>.</p>
<p>Last week, Google introduced Social Interaction Tracking in Google Analytics. Essentially, this allows you to put events from social media interactions into a special category that groups all social engagements together.  We&#8217;ve been tracking social media interactions on our clients&#8217; sites for quite a while, but until now this was done with event tracking. The new format, using the Social Interaction reports, lets you view the data through reports that are specifically tailored for this kind of activity. It also lets you more easily group any kind of social interaction together, and provides some automatic segmentation of socially engaged visitors.</p>
<p>So, using this new code, here&#8217;s my update on how to track Facebook &#8220;Like&#8221; buttons in Google Analytics. In this example I use the latest code from Facebook, so you&#8217;ll want to update any existing Like buttons you have. I also used the latest, asynchronous version of the Google Analytics tracking code.<br />
<span id="more-491"></span></p>
<p><strong>Getting your Facebook Like Button code</strong></p>
<p>The first thing you&#8217;ll need is the code that actually creates the Like button, which can be <a href="http://developers.facebook.com/docs/reference/plugins/like/">obtained from Facebook</a>. Facebook requires you to be a registered Facebook developer in order to make your buttons, which means  confirming that you&#8217;re a real person either by a text to your mobile  phone, or by entering credit card information.</p>
<p>In the post I mentioned above, I said that everything that happens on your site can  be tracked &#8212; but that some things, including iframes and  entirely-external JavaScript cannot easily fit into the mix. Facebook Like buttons can fit into either category. There&#8217;s an iframes version, which simply loads in a tiny window into Facebook that&#8217;s outside of the reach of JavaScript. The consequence: you can&#8217;t track the iframes Like button.</p>
<p>The other method uses Facebook&#8217;s XFBML. This version is mainly JavaScript-driven, but includes one very cool feature: Facebook provides a function to handle a Like event. That is, Facebook gives you an opportunity to add extra code to be executed whenever a &#8220;Like&#8221; happens. This is the perfect spot for Google Analytics event tracking, so <strong>make sure to choose the XFBML version</strong> of the Like button.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-493" style="border: 1px solid #444;" title="Facebook: Get Like Button" src="http://www.napkyn.com/n/wp-content/uploads/2011/05/facebook-get-like-button.jpg" alt="" width="537" height="176" /></p>
<p>Facebook will give you some code that looks something like the following. Of course, APP_ID_HERE and PAGE_URL will both be replaced by your App ID from Facebook, as well as the URL of the page to Like &#8212; both of these parameters are set automatically when you generate the button. The settings you choose when you generate the button will change the second line.</p>
<div style="padding: 1em; border: 1px dotted #444; background: #fff;"><code>&lt;div id="fb-root"&gt;&lt;/div&gt;&lt;script src="http://connect.facebook.net/en_US/all.js#appId=<strong>APP_ID_HERE</strong>&amp;amp;xfbml=1"      type="text/javascript"&gt;&lt;/script&gt;<br />
&lt;fb:like href="<strong>PAGE_URL</strong>" send="false"     width="100" show_faces="false"     font=""&gt;&lt;/fb:like&gt;</code></div>
<p><strong>Adding the Google Analytics social tracking<br />
</strong></p>
<p>What you need to add is a simple line of code that adds a new JavaScript function. This function&#8217;s purpose is to execute whenever the Like button is clicked, and fire a Google Analytics tracking code when that happens.</p>
<p>The asynchronous (async) version of the code looks like this:</p>
<div style="padding: 1em; border: 1px dotted #444; background: #fff;"><span style="color: #0000ff;"><code>&lt;script <span style="color: #993300;"> type</span>=<span style="color: #008000;">"text/javascript"</span>&gt;<br />
FB.Event.subscribe(<span style="color: #008000;">'edge.create'</span>,      function(<span style="color: #993300;">href</span>, <span style="color: #993300;">widget</span>) <span style="color: #993300;">{</span> _gaq.push(<span style="color: #993300;">[</span><span style="color: #008000;">'_trackSocial'</span>, <span style="color: #008000;">'Facebook'</span>,      <span style="color: #008000;">'Like'</span>, href<span style="color: #993300;">]</span>); <span style="color: #993300;">}</span>);<br />
&lt;/script&gt;</code></span></div>
<p>You may also want to track &#8220;Unlikes&#8221;, cases where a visitor clicks the Like button again to remove the page from their Liked content. Using the async method, add this to the JavaScript:</p>
<div style="padding: 1em; border: 1px dotted #444; background: #fff;"><span style="color: #0000ff;"><code>FB.Event.subscribe(<span style="color: #008000;">'edge.remove'</span>,       function(<span style="color: #993300;">href</span>, <span style="color: #993300;">widget</span>) <span style="color: #993300;">{</span> _gaq.push(<span style="color: #993300;">[</span><span style="color: #008000;">'_trackSocial'</span>, <span style="color: #008000;">'Facebook'</span>,      <span style="color: #008000;">'Unlike'</span>, href<span style="color: #993300;">]</span>); <span style="color: #993300;">}</span>);</code></span></div>
<p>Here&#8217;s what the final code looks like when you&#8217;ve added the new tracking snippet.  Again, APP_ID_HERE and PAGE_URL, in red, need to be replaced. The new tracking code is highlighted in color:</p>
<p><code> </code></p>
<div style="padding: 1em; border: 1px dotted #444; background: #fff;"><code>&lt;div id="fb-root"&gt;&lt;/div&gt;&lt;script src="http://connect.facebook.net/en_US/all.js#appId=<span style="color: #ff0000;"><strong>APP_ID_HERE</strong></span>&amp;amp;xfbml=1"      type="text/javascript"&gt;&lt;/script&gt;<br />
&lt;fb:like href="<span style="color: #ff0000;"><strong>PAGE_URL</strong></span>" send="false"     width="100" show_faces="false"     font=""&gt;&lt;/fb:like&gt;<br />
<span style="color: #0000ff;">&lt;script <span style="color: #800000;"> type</span>=<span style="color: #008000;">"text/javascript"</span>&gt;<br />
FB.Event.subscribe(<span style="color: #008000;">'edge.create'</span>,     function(<span style="color: #800000;">href, widget</span>) <span style="color: #800000;">{</span> _gaq.push<span style="color: #800000;"><span style="color: #0000ff;">(</span>[</span><span style="color: #008000;">'_trackSocial'</span>, <span style="color: #008000;">'Facebook'</span>,     <span style="color: #008000;">'Like'</span>, href<span style="color: #800000;">]<span style="color: #0000ff;">)</span></span>; <span style="color: #800000;">}<span style="color: #0000ff;">)</span></span>;<br />
<span style="color: #0000ff;">FB.Event.subscribe(<span style="color: #008000;">'edge.remove'</span>,       function(<span style="color: #993300;">href</span>, <span style="color: #993300;">widget</span>) <span style="color: #993300;">{</span> _gaq.push(<span style="color: #993300;">[</span><span style="color: #008000;">'_trackSocial'</span>, <span style="color: #008000;">'Facebook'</span>,      <span style="color: #008000;">'Unlike'</span>, href<span style="color: #993300;">]</span>); <span style="color: #993300;">}</span>);</span><br />
&lt;/script&gt;</span></code></div>
<p>So that&#8217;s it! Google Analytics tracking for Facebook &#8220;Like&#8221; buttons on your website. Once people start to &#8216;Like&#8217; your pages, you&#8217;ll see the data show up in the <strong>Visitors &gt; Social </strong>area of your Google Analytics account (in the new version).</p>
<p><strong>Using the Data</strong></p>
<p>Once you have your tracking in place, your <a href="http://www.napkyn.com/blog/2011/07/analyst-program/">web analyst</a> can make use of Google Analytics segmentation and a little bit of smarts to answer some really cool questions.  Are the same visitors who &#8220;Like&#8221; products the same ones who actually  buy them? Do posts, pages and articles with more Likes serve as the  landing pages for more converting visitors? Is there a best position for  social media buttons to get the most shares, Tweets and Likes without  distracting from conversions?</p>
<p>All of these questions can be answered with this data. Together with the referral data from incoming Facebook visitors, these insights can give you a sense of how valuable Facebook Like buttons are on your site and how you can best make use of them.</p>
<p>Until next time,</p>
<p>Colin</p>
]]></content:encoded>
			<wfw:commentRss>http://www.napkyn.com/blog/2011/07/06/track-facebook-like-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Track Google +1 Buttons with Google Analytics</title>
		<link>http://www.napkyn.com/blog/2011/06/02/track-google-plus-one-buttons-google-analytics/</link>
		<comments>http://www.napkyn.com/blog/2011/06/02/track-google-plus-one-buttons-google-analytics/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 18:25:52 +0000</pubDate>
		<dc:creator>Colin Temple</dc:creator>
				<category><![CDATA[Google +1]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web Tracking]]></category>
		<category><![CDATA[event tracking]]></category>
		<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://www.napkyn.com/?p=505</guid>
		<description><![CDATA[In a move reminiscent of Facebook&#8217;s option to put Like buttons out on the web, Google yesterday opened up its +1 website voting to web pages. This social feature, which already allowed you to share results on search engine pages, lets your website users directly &#8220;+1&#8243; content from your site&#8217;s pages. It&#8217;s Google&#8217;s answer to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-513" style="float: right; margin: 0 0 1em 1em;" title="Google +1" src="http://www.napkyn.com/n/wp-content/uploads/2011/06/google-plus-one1.png" alt="" width="142" height="96" />In a move reminiscent of Facebook&#8217;s option to put Like buttons out on the web, Google yesterday <a href="http://googleblog.blogspot.com/2011/06/1-button-for-websites-recommend-content.html">opened up its +1 website voting</a> to web pages. This social feature, which already allowed you to share results on search engine pages, lets your website users directly &#8220;+1&#8243; content from your site&#8217;s pages. It&#8217;s Google&#8217;s answer to the Facebook Like, Tweet This other social sharing buttons.</p>
<p>As analysts, we naturally want all of the data, so my first thought was, &#8220;OK, how do we track this thing?&#8221; As it turns out, Google thought of that as well. When you&#8217;re creating your +1 button, there&#8217;s an Advanced Options area which lets you customize the button. One of those options is to reference a callback function &#8212; JavaScript code that will execute when a +1 event happens. This is the perfect place for a little Google Analytics event tracking.<br />
<span id="more-505"></span></p>
<p>The code you get from Google will look something like this:</p>
<div style="padding: 1em; border: 1px dotted #444; background: #fff; color: #222;"><code><span style="color: #008000;">&lt;!-- Place this tag in your head or just before your close body tag --&gt;</span><br />
<span style="color: #000080;">&lt;script type=<span style="color: #008000;">"text/javascript"</span> src=<span style="color: #008000;">"http://apis.google.com/js/plusone.js"</span>&gt;&lt;/script&gt; </span></code>&nbsp;</p>
<p><code><span style="color: #008000;">&lt;!-- Place this tag where you want the +1 button to render --&gt;</span><br />
<span style="color: #000080;">&lt;g:plusone&gt;&lt;/g:plusone&gt;</span></code></p>
</div>
<p>The first part, the <code>&lt;script&gt;</code> tag, doesn&#8217;t need to change and will need to be put in your header no matter what. What will change is the second part, the <code>&lt;g:plusone&gt;</code> tags. If you choose to add a callback function, it&#8217;ll look something like this:</p>
<div style="padding: 1em; border: 1px dotted #444; background: #fff; color: #222;"><span style="color: #000080;"><code>&lt;g:plusone callback=<span style="color: #008000;">"track_plusone"</span>&gt;&lt;/g:plusone&gt;</code></span></div>
<p>In this example, I added a callback named <strong>track_plusone</strong>. This is a reference to a JavaScript function called &#8220;track_plusone&#8221; that will need to be defined on the page as well.  Here&#8217;s the code for my initial function:</p>
<div style="padding: 1em; border: 1px dotted #444; background: #fff; color: #222;"><code><span style="color: #000080;">&lt;script type=<span style="color: #008000;">"text/javascript"</span>&gt;</span><br />
<span style="color: #000080;">function </span>track_plusone<span style="color: #000080;">(</span>gpovote<span style="color: #000080;">)</span> <span style="color: #800000;">{</span><br />
<span style="color: #000080;">_gaq.push(</span><span style="color: #800000;">[</span><span style="color: #008000;">'_trackEvent'</span>, <span style="color: #008000;">'Social Shares'</span>, <span style="color: #008000;">'Google +1 Vote'</span>, gpovote.href<span style="color: #800000;">]</span><span style="color: #000080;">)</span>;<br />
<span style="color: #800000;">}</span><br />
<span style="color: #000080;">&lt;/script&gt;</span></code></div>
<p>What this function does is fires a Google Analytics event tracking code. It sets the category of that event to &#8220;Social Shares&#8221;, the action to &#8220;Google +1 Vote&#8221; and the label to the URL of the page the button was clicked on. You can change the category and action to suit your own conventions, of course. The page is technically available in the new GA interface, where you can view events by page as well.   The result is an event that shows up in Google Analytics whenever an item is voted for. Events take anywhere from one to 24 hours to show up, and appear within the <strong>Content &gt; Events</strong> area of the Google Analytics user interface.</p>
<p>There&#8217;s one other feature we need to account for. Not only can visitors click the button to +1 vote for a page, but they can click it again to undo their vote &#8212; effectively giving you a -1 vote. We&#8217;ll need to be able to distinguish between initial +1 votes and -1 vote &#8220;undo&#8221; events. So, here&#8217;s a revised version of the function, which gives you two kinds of event actions: &#8220;Google +1 Vote&#8221; and &#8220;Google -1 Vote (Undo +1)&#8221;. Again, you change those details to match your conventions.</p>
<div style="padding: 1em; border: 1px dotted #444; background: #fff; color: #222;"><code><span style="color: #000080;">&lt;script type=<span style="color: #008000;">"text/javascript"</span>&gt;</span><br />
<span style="color: #000080;">function </span>track_plusone<span style="color: #000080;">(</span>gpovote<span style="color: #000080;">)</span> <span style="color: #800000;">{</span><br />
<span style="color: #000080;">var </span>gpoaction = <span style="color: #008000;">'Google +1 Vote'</span>;<br />
<span style="color: #000080;">if (</span>gpovote.state==<span style="color: #008000;">'off'</span><span style="color: #000080;">)</span> <span style="color: #800000;">{</span> gpoaction = <span style="color: #008000;">'Google -1 Vote (Undo +1)'</span>; <span style="color: #800000;">}</span><br />
<span style="color: #000080;">_gaq.push(</span><span style="color: #800000;">[</span><span style="color: #008000;">'_trackEvent'</span>, <span style="color: #008000;">'Social Shares'</span>, gpoaction, gpovote.href<span style="color: #800000;">]</span><span style="color: #000080;">)</span>;<br />
<span style="color: #800000;">}</span><br />
<span style="color: #000080;">&lt;/script&gt;</span></code></div>
<p>[ <strong>Update: </strong>Google has also indicated that they will be adding some +1 reports of their own into Google Analytics, so these features will be integrated. You may prefer to do it that way, but one of the reasons we're using this code is that it allows our "social shares" events to be grouped and roll up into one category. At a glance, we can see how many shares happened on the site, and then drill down to see which services they came from. It's all about getting the right structure you want for the way you look at your site's features. ]</p>
<p>[ <strong>Update 2: </strong>Google has now unveiled its new reports for tracking social media interactions. The integrated +1 tracking is now combined with a new version of the event tracking code that's specific to social media. I added a post on tracking <a href="http://www.napkyn.com/blog/2011/07/06/track-facebook-like-google-analytics/">Facebook Like buttons using Google Analytics social tracking</a> to showcase the new code, but the +1 buttons have this feature automatically, so strictly speaking, you don't need to add this yourself anymore. We still use this code to show these alongside our existing events for social tracking, at least until we get more data from the new method and phase the event tracking version out. ]</p>
<p>This kind of tracking lets your <a href="http://www.napkyn.com/analyst-program/">web analyst</a> answer questions about the value of these Google +1 buttons, and the voters who use them. Are people who +1 vote for products the same people who purchase them? Do those people tend to come from social media themselves?</p>
<p>Social media is notoriously tough to track, so answering questions like this can be very useful to understanding what exactly you gain by adding these buttons to your site. Are they worth it? Let the data tell you.</p>
<p>Until next time,</p>
<p>Colin</p>
<p><strong> </strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.napkyn.com/blog/2011/06/02/track-google-plus-one-buttons-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entrecard&#8217;s bait-and-switch</title>
		<link>http://colintemple.com/writing/2009/04/entrecard-bait-switch/</link>
		<comments>http://colintemple.com/writing/2009/04/entrecard-bait-switch/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 14:26:06 +0000</pubDate>
		<dc:creator>Colin Temple</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[ad networks]]></category>
		<category><![CDATA[advertising sales]]></category>
		<category><![CDATA[entrecard]]></category>
		<category><![CDATA[monetization]]></category>

		<guid isPermaLink="false">http://workwebplay.com/?p=77</guid>
		<description><![CDATA[Entrecard began as a community-drive way for blog owners to trade ads.  Now, it&#8217;s becoming a paid ad network. If you use the service, you probably know that Entrecards, which used to show approved ads from community members, and paid you in credits, and allowed you to advertise on other Entrecards, now show paid ads [...]]]></description>
			<content:encoded><![CDATA[<p>Entrecard began as a community-drive way for blog owners to trade ads.  Now, it&#8217;s becoming a paid ad network.</p>
<p>If you use the service, you probably know that Entrecards, which used to show approved ads from community members, and paid you in credits, and allowed you to advertise on other Entrecards, now show paid ads 50% of the time.  You can reject paid ads, and check an option (it&#8217;s not checked by default!) to only allow approved ads on your widget, but that doesn&#8217;t change this core change in the purpose of Entrecard.  OK, so that&#8217;s not what Entrecard was to begin with, and not what we signed up for.  But maybe we&#8217;ll all make some money, so let&#8217;s hear them out.<span id="more-77"></span></p>
<p>It was <a href="http://entrecard.com/blog/?p=1169">recently announced</a> that algorithms would be developed to determine who gets payouts first.  The algorithm would attempt to determine your value to Entrecard&#8217;s community as a whole.  Feel the love.  Here are the criteria:</p>
<ol>
<li>How many cards you drop / how frequently</li>
<li>% of paid ads you approve</li>
<li>% of Entrecard ads you approve</li>
<li>Listings you create / completed sales in the market</li>
<li>How many credits you transfer to others (indicative of contests, tips, and generosity)</li>
<li>% of credits you spend on Entrecard ads</li>
</ol>
<p>Ok, so, I have to be willing to approve most of the ads coming my way, even if they&#8217;re irrelevant to my site and inappropriate for my visitors?  I have to participate in this weird marketplace community that trades goods and services for Entrecard credits (I thought those were for advertisements, but whatever.  I can pay 1EC for some guy to follow me on Twitter.  Yippee.).  And I have to hold contests for my credits, or just give my credits away?  You want to buy my credits, but only if I give some of them away first?</p>
<p>Of course, Entrecard has always been more valuable to those who have the time and energy to drop cards all day, to round up huge amounts of credits and hold contests to give them away, etc, etc.  But there was value in it for those of us with work, school, social lives, and, uh, blogging to do anyways.  I got a bunch of junk traffic, and a bunch of valuable traffic.  I got new eyes on my blogs.  I got comments.  But now, the value of the advertisements I place has been halved, since paid ads will show over mine 50% of the time, unless I, too, pay.</p>
<p>So, <strong>what motivation do I have to support paid ads on Entrecard?</strong> Whether or not I <em>ever</em> see a dime for showing paid ads on my site is completely uncertain.  It looks like if I become more active with Entrecard, I maybe, kind of, could see a few bucks.  But if I cash out the entirety of my credits right now (i.e. if they&#8217;d let me), I may be able to eat at McDonald&#8217;s.  Y&#8217;know, if trying to cash in credits weren&#8217;t enough to give me a heart attack.</p>
<p><strong>News. Flash. </strong>I get more money than that from Google AdSense where I use it, and I don&#8217;t have to jump through hoops to get them to pay me.  I don&#8217;t have to run around visiting other AdSense sites and clicking on ads to get a return for the ad space I&#8217;m using myself.</p>
<p>Who would join Entrecard after this?  <strong>Here&#8217;s the pitch: </strong>&#8220;Put this widget on your blog.  We&#8217;ll show paid ads on it.  We might pay you for them, but, sorry, if you&#8217;re not going to play our little dropping game, you&#8217;ll be last on the list.  But why wouldn&#8217;t you want to participate?  Aren&#8217;t you a team player?  We&#8217;re all about community here.&#8221;</p>
<p>What makes Entrecard think it&#8217;s cool to push paid ads onto my site and say, &#8220;Hey, I&#8217;ll get you later&#8221;?  Entrecard was great as a community site where everything was about bloggers working together.  But this gradual change into a paid ad marketplace sucks, and the fact that it&#8217;s happening slowly has some bloggers excited about the idea that their credits could turn into cash.  So much so, that some people seem to be hoarding credits away rather than using them to keep the free half of the system moving.</p>
<p>I&#8217;m trying to have faith that this will work itself out, so I haven&#8217;t removed my widgets yet.  Maybe if I just reject paid ads and focus on the original intent of Entrecard, I&#8217;ll still get value from it.  Or, maybe the system will improve and I&#8217;ll eventually get some money from it.  Entrecard isn&#8217;t neccessarily doomed, but I don&#8217;t think they&#8217;re on the right track.  So, we&#8217;ll see.</p>
<p>I joined a community-driven, cooperative ad network.  Now I&#8217;m in a paid ad network.  And not a very good one.</p>
]]></content:encoded>
			<wfw:commentRss>http://colintemple.com/writing/2009/04/entrecard-bait-switch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Call of Duty devs using Twitter to get feedback</title>
		<link>http://colintemple.com/writing/2009/02/cod-mw2-twitter/</link>
		<comments>http://colintemple.com/writing/2009/02/cod-mw2-twitter/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 19:09:32 +0000</pubDate>
		<dc:creator>Colin Temple</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[community building]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://workwebplay.com/?p=59</guid>
		<description><![CDATA[Being a bit of a gamer myself, it&#8217;s always interesting to see the gaming world touch on my professional world.  Here&#8217;s an example of the gaming industry getting social media right. Game developer Infinity Ward, the company behind the immensely popular Call of Duty 4: Modern Warfare is calling on gamers to submit suggestions for [...]]]></description>
			<content:encoded><![CDATA[<p>Being a <a href="http://www.galbadiax.com/">bit</a> <a href="http://www.game-machines.com/">of</a> a <a href="http://www.xboxliving.com/">gamer</a> myself, it&#8217;s always interesting to see the gaming world touch on my professional world.  Here&#8217;s an example of the gaming industry getting social media right.<span id="more-59"></span></p>
<p>Game developer Infinity Ward, the company behind the immensely popular <em>Call of Duty 4: Modern Warfare</em> is calling on gamers to submit suggestions for its next title via Twitter.  In order to submit a suggestion for <em><strong>Call of Duty, Modern Warfare 2</strong></em>, or answer the current question posed by the dev team, just include the hash tag #MW2 in your tweet.</p>
<p>The company has launched a web app to compile the replies, which is now live at <a href="http://twitter.infinityward.com/">twitter.infinityward.com</a>, and is already collecting huge amounts of feedback from the dev community.</p>
<p>This is a great thing for Infinity Ward in a number of ways.  For one, getting lots of feedback and identifying the trends is just going to make the game better, which is great for the company and its customers.  Additionally, it&#8217;s building better relationships with their target audience, and helping them ensure that its games remain in gamers&#8217; minds between releases.  (Good call on this one <a href="http://twitter.com/fourzerotwo">@fourzerotwo</a>!)</p>
<p style="text-align: center;"><img class="size-full wp-image-60 aligncenter" style="border: 3px double #888888; padding: 3px;" title="Twitter #MW2" src="http://workwebplay.com/wp-content/uploads/2009/02/twitter-mw2.jpg" alt="Twitter #MW2" width="385" height="502" /></p>
]]></content:encoded>
			<wfw:commentRss>http://colintemple.com/writing/2009/02/cod-mw2-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Political Twitter</title>
		<link>http://colintemple.com/writing/2008/10/twitter-politics/</link>
		<comments>http://colintemple.com/writing/2008/10/twitter-politics/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 13:46:46 +0000</pubDate>
		<dc:creator>Colin Temple</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://workwebplay.com/?p=50</guid>
		<description><![CDATA[Last night was the English debate for the Canadian party leaders, as well as the VP candidates debate in the United States.  I don&#8217;t know who decided to schedule them both at the exact same time, but it certainly kept Twitter busy.  Throughout the debate viewers on both sides of the border were all posting [...]]]></description>
			<content:encoded><![CDATA[<p>Last night was the English debate for the Canadian party leaders, as well as the VP candidates debate in the United States.  I don&#8217;t know who decided to schedule them both at the exact same time, but it certainly kept Twitter busy.  Throughout the debate viewers on both sides of the border were all posting about the election to Twitter &#8212; as were some of the candidates.<span id="more-50"></span></p>
<p style="text-align: center; font-size: 0.9em;"><img class="alignnone size-full wp-image-51" title="Canadian Party Leaders" src="http://workwebplay.com/wp-content/uploads/2008/10/party-leaders-2008-08.jpg" alt="" /><br />
The Canadian party leaders participating in the debate.</p>
<p>In Canada, New Democratic Party leader Jack Layton (<a href="http://twitter.com/jacklayton" target="_blank">@jacklayton</a>) brought pieces of the debate right into Twitter.  He apparently had a team working behind the scenes to offer NDP responses to some of the things said by the other leaders (mostly Harper).  During the debate, several &#8220;fact check&#8221; tweets were posted, linking to <a href="http://www.ndp.ca/category/id/185/all" target="_blank">various statements</a> on the NDP website that offered the NDP account of what really happened.</p>
<p>Most of the other candidates have Twitter accounts too &#8212; Prime Minister Stephen Harper (<a href="https://twitter.com/pmharper" target="_blank">@pmharper</a>), Green Party leader Elizabeth May (<a href="http://twitter.com/ElizabethMay" target="_blank">@ElizabethMay</a>) and Bloc Québécois leader Gilles Duceppe (<a href="https://twitter.com/gillesduceppe" target="_blank">@gillesduceppe</a>) are all up there.  The only Canadian leader who doesn&#8217;t seem to have an active Twitter profile (at least not one that I could find) is Liberal leader Stéphane Dion.  <a href="https://twitter.com/stephanedion" target="_blank">@stephanedion</a> isn&#8217;t following anyone, and has only a &#8220;Hello Twitter!&#8221; statement from over a year ago.</p>
<p>I&#8217;ve followed all of the leaders, but so far only Jack Layton and Stephen Harper have followed me back.  (Seeing &#8220;Stephen Harper is now following you on Twitter!&#8221; pop up in my email was amusing to me.)  I&#8217;ll be disappointed if Elizabeth May doesn&#8217;t follow me, but she hasn&#8217;t posted a tweet since the debate, and it looks like she genuinely manages her own Twitter account.</p>
<p>I do hope that whoever becomes Prime Minister does keep using Twitter.</p>
]]></content:encoded>
			<wfw:commentRss>http://colintemple.com/writing/2008/10/twitter-politics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Action Day is back</title>
		<link>http://colintemple.com/writing/2008/08/blog-action-day-is-back/</link>
		<comments>http://colintemple.com/writing/2008/08/blog-action-day-is-back/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 06:09:13 +0000</pubDate>
		<dc:creator>Colin Temple</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[blog action day]]></category>

		<guid isPermaLink="false">http://workwebplay.com/?p=34</guid>
		<description><![CDATA[Last October, bloggers around the world were called to join together and raise awareness of a single topic on one day.  Blog Action Day saw thousands of blogs writing about a single socially relevant topic: the Environment.  I wrote on a few of my blogs, including Xbox Living, where I offered some tips on saving [...]]]></description>
			<content:encoded><![CDATA[<p>Last October, bloggers around the world were called to join together and raise awareness of a single topic on one day.  Blog Action Day saw thousands of blogs writing about a single socially relevant topic: the Environment.  I wrote on a few of my blogs, including Xbox Living, where I offered some tips on <a href="http://www.xboxliving.com/2007/10/15/save-some-energy-with-your-xbox-360/">saving energy with the Xbox 360.</a><span id="more-34"></span></p>
<p>This year, <a href="http://blogactionday.org/">Blog Action Day</a> will focus on another global problem: poverty.  Bloggers from around the world are called to write a post about the issue and publish it on October 15 to raise awareness of global poverty and work together to help the problem.</p>
<p>I&#8217;ve just registered <strong>Work, Web, Play</strong> to participate this year, and I&#8217;ll be writing on my other blogs where I can.   It looks like I made it into the first 100 sites to register.  Be sure to get your blog registered on <a href="http://blogactionday.org/">blogactionday.org</a> and join in the cause on October 15!</p>
<p>This year, it&#8217;d be great to see some more corporate blogs take part as well &#8212; social awareness is always a great trait to see from the corporate world.  This is a great opportunity to promote your business as a socially conscious, forward-thinking organization.</p>
<p style="text-align: center;"><a href="http://blogactionday.org/"><img class="alignnone" style="border: 1px solid #333;" title="Blog Action Day" src="http://blogactionday.s3.amazonaws.com/banners/Badge_300x160.jpg" alt="" width="300" height="160" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://colintemple.com/writing/2008/08/blog-action-day-is-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Bubble Burst 2.0?</title>
		<link>http://colintemple.com/writing/2008/07/web-bubble-burst-20/</link>
		<comments>http://colintemple.com/writing/2008/07/web-bubble-burst-20/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 02:45:29 +0000</pubDate>
		<dc:creator>Colin Temple</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Marketing Strategy]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[bubble burst]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://workwebplay.com/?p=10</guid>
		<description><![CDATA[Everyone&#8217;s really excited about Web 2.0. Still. That in itself isn&#8217;t a problem: there&#8217;s lots to be excited about. All this Web 2.0 stuff &#8212; social media, network building, picture posting, wiki writing, Twitter tweeting and all the other things bloggers do while high on AJAX &#8212; is making the Web into a much more [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone&#8217;s really excited about Web 2.0. Still. That in itself isn&#8217;t a problem: there&#8217;s lots to be excited about. All this Web 2.0 stuff &#8212; social media, network building, picture posting, wiki writing, Twitter tweeting and all the other things bloggers do while high on AJAX &#8212; is making the Web into a much more collaborative, open and accessible medium. That was pretty much the point of the Web from the get-go, so kudos to them for the job well done.<span id="more-10"></span></p>
<p><em><strong>But,</strong> </em>talk has been growing over the past year about the future of this utopia we&#8217;re all building together &#8212; or at least, its business future. The analysts say the tides may be turning yet again: that Web 2.0 is forming a bulge of a bubble that&#8217;s about to burst at the seams.</p>
<p>And they&#8217;re probably right. If you look around, it&#8217;s pretty obvious that there&#8217;s <a href="http://www.google.com/trends?q=web+2.0%2C+social+media&amp;ctab=0&amp;geo=all&amp;date=all&amp;sort=0">a lot of noise going on</a>. Of course, we&#8217;ve had Facebook, YouTube, MySpace, Digg, Flickr and the great big blogosphere for a while now. But every day it seems I&#8217;m learning about some new Web 2.0 app and how it&#8217;s the best thing for me since sliced turkey. There are <em>way too many</em> social media sites out there, and I&#8217;m afraid that sitting in the middle of this with my Web Marketer and Web Developer hats on has gotten me awfully dizzy.</p>
<p>And while wearing those hats &#8212; yes, I wear actual hats &#8212; I&#8217;m often browsing freelancer sites looking for fun and exciting projects to work on. Without fail, there are daily postings from investors looking to build the next MySpace, Digg or <em>i-silver-bullet</em>. If not, they at least want a new Facebook app that will create the viral marketing their business always needed to get off the ground.</p>
<p>After the 2000 dot-com burst, this kind of <em>if you build it they will come</em> smack in the face of rationality came to a grinding halt, and the executives who didn&#8217;t smarten up were politely asked to die in a hole somewhere. Now, it seems like the coffers are opening up again to buy a piece of Web 2.0 pie.</p>
<p>Of course so many &#8220;Web 2.0&#8243; companies are living off of traffic and ad revenue alone &#8212; but what about those using the Web to sell something tangible? My friends over at Sitebrand paint a <a href="http://blog.sitebrand.com/2008/03/24/e-retailing-will-save-us-from-a-recession-too-bad-its-just-a-fad/">brighter picture</a> for those involved in online retail, where the Web may actually be the safer bet as the U.S. economy slows down.</p>
<p>Meanwhile, the clients I work with have all increased their online marketing spending over the past year or two &#8212; but every single one of them has become obsessed with their web metrics. Conversion rates, cost-per-lead and ROI are on the tops of their minds, and rightly so.</p>
<p>So it seems that at least some people have learned from the first dot-com burst, which is great because they&#8217;ll need to use that kind of sense again to search for new marketing tactics when the bubble bursts and Internet users worldwide simultaneously fall into <em>comas</em>.</p>
<p>I guess what I&#8217;m trying to say in all of this is &#8220;smarten up, Internet&#8221;, because if everything goes to hell again the Web won&#8217;t be any more fun and I&#8217;ll have to get a new job.</p>
]]></content:encoded>
			<wfw:commentRss>http://colintemple.com/writing/2008/07/web-bubble-burst-20/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

