<?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/"
	>

<channel>
	<title>Online Marketing Analytics</title>
	<atom:link href="http://www.onlinemarketinganalytics.com.au/feed" rel="self" type="application/rss+xml" />
	<link>http://www.onlinemarketinganalytics.com.au</link>
	<description>Helping Australian businesses with their web traffic</description>
	<pubDate>Tue, 15 Dec 2009 04:18:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Don&#8217;t Get Greedy With Regex</title>
		<link>http://www.onlinemarketinganalytics.com.au/analytics-tips/dont-get-greedy-with-regex.html</link>
		<comments>http://www.onlinemarketinganalytics.com.au/analytics-tips/dont-get-greedy-with-regex.html#comments</comments>
		<pubDate>Tue, 15 Dec 2009 04:18:47 +0000</pubDate>
		<dc:creator>Ben Tortora</dc:creator>
		
		<category><![CDATA[Analytics Tips]]></category>

		<guid isPermaLink="false">http://www.onlinemarketinganalytics.com.au/?p=127</guid>
		<description><![CDATA[For many web traffic analysts, most would have some great skills in analysing and crunching numbers and data, generating pretty graphs and reports, as well as some marketing insights on how to take action. However one skill that might have been so prevalent is the ability to generate Regular Expressions (or regexs as they are [...]]]></description>
			<content:encoded><![CDATA[<p>For many web traffic analysts, most would have some great skills in analysing and crunching numbers and data, generating pretty graphs and reports, as well as some marketing insights on how to take action. However one skill that might have been so prevalent is the ability to generate Regular Expressions (or regexs as they are known in the developer world). In fact, many first time programmers struggle with generating them properly. </p>
<p>With Google&#8217;s goal conversion and filtering now all being able to accept regexs all over the place, it is a skill all analytics people should have up their sleave, rather than running to the dev team.<span id="more-127"></span></p>
<h2>So What Exactly are Regular Expressions</h2>
<p>I cannot say it much better than this:</p>
<blockquote><p>A way of describing a pattern in text - for example, &#8220;all the words that begin with the letter A&#8221; or &#8220;every 10-digit phone number&#8221; or even &#8220;Every sentence with two commas in it, and no capital letter Q&#8221;. Regular expressions are useful in Apache because they let you apply certain attributes against collections of files or resources in very flexible ways - for example, all .gif and .jpg files under any &#8220;images&#8221; directory could be written as &#8220;/images/.*(jpg|gif)$&#8221;. Apache uses Perl Compatible Regular Expressions provided by the PCRE library. - <em><a href="http://genome.ym.edu.tw/manual/glossary.html">Apache Glossary</a></em></p></blockquote>
<h2>Where Can I Learn About Regex?</h2>
<p>There are plenty of places online that provide regular expression tutorials and how to implement them into your code. However, we do not need to implement them into PHP or JavaScript, we just need them to filter data in big analytics reports. </p>
<p>Google has recognised this and as part of becoming an Analytics Qualified Individual, there is an entire section of the conversion university regarding the topic. Visit the <a href="http://services.google.com/analytics/breeze/en/regex_ga/index.html">Google Analytics Regex Lesson</a> and see exactly their application in your context. </p>
<h2>Any Regex Builders out there?</h2>
<p>Why of course there are! Here are just a couple:</p>
<ul>
<li><a href="http://www.trakkboard.com/en">TrakkBoard</a> - You can run this little app as a desktop version that has filtering already built in for a couple of small areas.</li>
<li><a href="http://www.gskinner.com/RegExr/">RegExr</a> - This is an app that lets you build, test and store regular expressions which you can cut and paste across into Analytics</li>
</ul>
<p>So in conclusion, this might be the most painful part of the job (definitely the less sexy) but there so much awesomeness that comes out of nailing a regex just right (it&#8217;s better than crossing items off a to-do list).</p>
<h2>But Wait - Don&#8217;t Get Greedy</h2>
<p>Specifically relating to Google Analytics, Regular Expressions, and Goal Conversion tracking - there is one problem that always creeps up on the new guys. </p>
<p>You will discover that <code>.*</code> catches absolutely everything and you think it is a nice and easy default way to make sure everything is included and all goals track in one nice tiny expression. What you don&#8217;t realise is that by default regular expressions are greedy, and when you tell it everything, it does include everything. So resist the urge to take the easy way out. For example:</p>
<ul>
<li>If you know that there is only going to be numbers in the URL, use <code>[0-9]</code>.</li>
</ul>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onlinemarketinganalytics.com.au/analytics-tips/dont-get-greedy-with-regex.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google Analytics is Faster</title>
		<link>http://www.onlinemarketinganalytics.com.au/ga-updates/google-analytics-is-faster.html</link>
		<comments>http://www.onlinemarketinganalytics.com.au/ga-updates/google-analytics-is-faster.html#comments</comments>
		<pubDate>Thu, 03 Dec 2009 03:31:02 +0000</pubDate>
		<dc:creator>Ben Tortora</dc:creator>
		
		<category><![CDATA[GA Updates]]></category>

		<guid isPermaLink="false">http://www.onlinemarketinganalytics.com.au/?p=123</guid>
		<description><![CDATA[This post is probably a little bit more technical and on the programming side than others on this blog. It&#8217;s because of the fact that now your Google Analytics code won&#8217;t be blocking the rendering of the rest of your website. It does this by loading the code asynchronously. Find out the benefits of this [...]]]></description>
			<content:encoded><![CDATA[<p>This post is probably a little bit more technical and on the programming side than others on this blog. It&#8217;s because of the fact that now your Google Analytics code won&#8217;t be blocking the rendering of the rest of your website. It does this by loading the code asynchronously. Find out the benefits of this by reading the full post.<span id="more-123"></span></p>
<p>The reason why you should update to this piece of code (even though it is in beta) is that it can notably speed up the page load time of your website. With Google and the web itself starting to pay even more attention to the time it takes to load a website, you could actually be getting penalised and frustrating your users if it takes longer than needed to load one page. </p>
<p>How the javascript becomes faster is by dynamically generating and modifying Javascript objects as the page loads. This also has added benefits as has a less likely chance of freezing or not loading your page when it hits javascript code, meaning that the quality of the data it is collecting is a step closer to being even more accurate.</p>
<p>The other clear reason why you should be upgrading is the fact that it is working towards HTML5 standards, the biggest movement online currently. Any website that is taking the required steps in being cutting edge will greatly benefit all of its users.</p>
<p>So do your company, your website visitors, and the search engines a favour by migrating to the new code. Check out the instructions on <a href="http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html">how to upgrade your google analytics code</a> provided by Google.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onlinemarketinganalytics.com.au/ga-updates/google-analytics-is-faster.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Using GA to find out Ranking History</title>
		<link>http://www.onlinemarketinganalytics.com.au/seo-analysis/using-ga-to-find-out-ranking-history.html</link>
		<comments>http://www.onlinemarketinganalytics.com.au/seo-analysis/using-ga-to-find-out-ranking-history.html#comments</comments>
		<pubDate>Tue, 17 Nov 2009 03:58:07 +0000</pubDate>
		<dc:creator>Ben Tortora</dc:creator>
		
		<category><![CDATA[SEO Analysis]]></category>

		<guid isPermaLink="false">http://www.onlinemarketinganalytics.com.au/?p=96</guid>
		<description><![CDATA[Today I was doing some analysis for a particular client that was suffering from some keyword cannabilisation and we needed to work out how to overcome the problem. I wanted to do some analysis on the page&#8217;s history as they had quite a lot of historical analytics data. I actually stumbled across a handy little [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was doing some analysis for a particular client that was suffering from some keyword cannabilisation and we needed to work out how to overcome the problem. I wanted to do some analysis on the page&#8217;s history as they had quite a lot of historical analytics data. I actually stumbled across a handy little report that I thought would benefit the wider community, especially when you are working with your SEO strategists. <span id="more-96"></span></p>
<p>What I discovered is that we can determine which pages had the best performance for particular keywords on particular search engines. Obiviously the ones that the highest amount of traffic or are preferred by the search engines would have the highest rank. Also if any of those pages have changed over time, we can analyse what words were driving traffic previously compared to the current. And most importantly for the SEO analysts out there, they can see whether the same page is choosen across all the major search engines and if not, figure out the difference between them. </p>
<p>Let&#8217;s take it step by step shall we?</p>
<h2>The GA Report You Need to Build</h2>
<p>OK, before we can analyse some data, you need to have some of the new features of Google Analytics available under your account, namely the Pivot tables. What exactly the pivot tables do is out of the scope of this post, we just need the feature to do proper analysis of the data.</p>
<p>So firstly, bring up your standard generic <strong>Keyword Report</strong> that is generated by default.</p>
<p>Then we start to segment the data, so with the new second drop down in the keyword column we can select &#8220;<em>Landing Page</em>&#8221; to bring up the most used landing page for that particular keyword. Then we need to move across to the icons on the right hand side of the screen to select the &#8220;<em>Pivot Report</em>&#8221; option, which will then make available even more drop downs to segment the data. </p>
<p>We now want to <strong>Pivot by</strong>: and select source, for the various search engines. As you can see our data, whilst filled with numbers, is now a lot more interesting. For bonus points and even further analysis, you can Show both <em>visits</em> as well as <em>Bounce Rate</em>.</p>
<p>Your Report should now look something like this:<br />
<div id="attachment_101" class="wp-caption alignnone" style="width: 300px">
	<a href="http://www.onlinemarketinganalytics.com.au/wp-content/uploads/2009/11/example-report.jpg"><img src="http://www.onlinemarketinganalytics.com.au/wp-content/uploads/2009/11/example-report-300x94.jpg" alt="Example of how your report should look" title="google-analytics-example-report" width="300" height="94" class="size-medium wp-image-101" /></a>
	<p class="wp-caption-text">Example of how your report should look</p>
</div></p>
<h2>So What do you do with this data now?</h2>
<p>So from this data we can look at the performance of particular pages as well as their main search traffic drivers.</p>
<p>In the screenshot above we notice that &#8220;cars&#8221; was our best performing word but here is the most shocking news: none of the traffic came from Google! How many reports have you seen that could provide you with that insight. Now I know this is a highly unique situation, but it clearly shows my point - without this level of segmentation, we could never know that, or even worse, assume it came from Google in the first place. </p>
<p>The actionable item I would be presenting to my client is that whilst we have managed to drive a significant amount of traffic for this keyword, the next task for our SEO team is to make sure that we start ranking for that keyword in Google. How they go about that is up to their strategy they have set in place. </p>
<p>But I have another trick up my sleave, I want to see the history of this keyword and page combo over time.</p>
<h2>The Keyword/Landing Page/Referrer Report</h2>
<p>So we have our keyword - &#8220;cars&#8221; and our landing page, now lets track the history and see if this page ever ranked in Google. </p>
<p>Go back to our original keyword report, before our fancy segmentation and you should be able to click on the keyword in the report, which will take you to a keyword specific report, with a generic overview.</p>
<p>Now we need to pull the history, in this case I am going to take the last 12 months of so of data, you should be able to go up to the calendar in the top right of the screen and adjust the dates, very straight forward. And since im pulling monthly data, I press the <em>Graph By</em> button and change it to monthly numbers.</p>
<p>Then on the drop-down I select <em>Landing Page</em> to get a list of all the landing pages that have ever been used by that keyword. Then the final piece of data that really makes this report pop is changing the secondary drop down to add the <em>Source</em> so we can see the search engines. So you should end up with something like this:<br />
<div id="attachment_103" class="wp-caption alignnone" style="width: 300px">
	<a href="http://www.onlinemarketinganalytics.com.au/wp-content/uploads/2009/11/keyword-lp-source.jpg"><img src="http://www.onlinemarketinganalytics.com.au/wp-content/uploads/2009/11/keyword-lp-source-300x138.jpg" alt="Keywords/LandingPage/Source" title="keyword-lp-source" width="300" height="138" class="size-medium wp-image-103" /></a>
	<p class="wp-caption-text">Keywords/LandingPage/Source</p>
</div></p>
<h2>What this report tells us?</h2>
<p>Well it shows us that this keyword really did not start performing for us until July, almost 6 months after its creation. For that small period of time, the search engines jumped around a little bit picking a few different pages, but Yahoo really locked that page in. Interesting Google never thought that page was worth anything at all, and that is something our SEO team needs to address.</p>
<h2>What should you do now?</h2>
<p>Well the ball is really into your court. You have your list of keywords and their performance. If you feel they are not working for you as well they should, then this report can help you present your case to your relevant SEO team in order for them to understand the issue. These reports can all be saved and scheduled as well for future reporting. And you might have noticed we didn&#8217;t even discuss the other metrics in this report such as bounce rate and time on site, that is a whole other ball game.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onlinemarketinganalytics.com.au/seo-analysis/using-ga-to-find-out-ranking-history.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google Analytics Gets Clever</title>
		<link>http://www.onlinemarketinganalytics.com.au/ga-updates/google-analytics-gets-clever.html</link>
		<comments>http://www.onlinemarketinganalytics.com.au/ga-updates/google-analytics-gets-clever.html#comments</comments>
		<pubDate>Fri, 06 Nov 2009 06:37:01 +0000</pubDate>
		<dc:creator>Ben Tortora</dc:creator>
		
		<category><![CDATA[GA Updates]]></category>

		<category><![CDATA[new features]]></category>

		<guid isPermaLink="false">http://www.onlinemarketinganalytics.com.au/?p=86</guid>
		<description><![CDATA[So as I am sure all of you are well aware, Google Analytics is in the process of rolling out a whole stack of new features throughout all there users, with the major pitch towards it being &#8220;intelligent.&#8221; And I for one am finally glad that we can pivot on data and do some crazy [...]]]></description>
			<content:encoded><![CDATA[<p>So as I am sure all of you are well aware, Google Analytics is in the process of rolling out a whole stack of new features throughout all there users, with the major pitch towards it being &#8220;intelligent.&#8221; And I for one am finally glad that we can pivot on data and do some crazy analysis, bending and twisting it in ways unimaginable even for a European gymnast. What we will do now is go through each of them and I&#8217;ll give my thoughts on how I plan to use them.<span id="more-86"></span></p>
<ul>
<li><strong>Engagement Goals</strong> - I think these are great for brand new websites with little to no feedback on how the design they chose is working for them. Also, if it is a blog, the time on site and page views can be nice and high - you are hoping visitors are hanging around and reading as much as they can.</li>
<li><strong>Mobile Reporting</strong> - A must have for any website with a mobile version. A trend I am noticing as well is that due to the nature of mobile websites and their clean and simple UI, people are using the mobile version even though they are on a desktop.</li>
<li><strong>Advanced Analysis Features</strong> - Great for when the client requests that quick once off report. The power of advanced custom segments without having to go to the trouble of creating them.</li>
<li><strong>Multiple Custom Variables</strong> - This is fantastic, you can segment until the cows come home all your regular and repeat visitors, and detect patterns in their behavior.</li>
<li><strong>Custom Alerts</strong> - This feature is perfect on being alerted straight away of your online marketing campaign objectives. Rather than going into just to see how your tracking, you are alerted, get the report and leave, spending less time babysitting the data.</li>
</ul>
<p>So if you already have these features available in your account, leave how your using them for your own campaigns in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onlinemarketinganalytics.com.au/ga-updates/google-analytics-gets-clever.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>When Things are Not Set</title>
		<link>http://www.onlinemarketinganalytics.com.au/resources/when-things-are-not-set.html</link>
		<comments>http://www.onlinemarketinganalytics.com.au/resources/when-things-are-not-set.html#comments</comments>
		<pubDate>Thu, 08 Oct 2009 03:49:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Resources]]></category>

		<category><![CDATA[(not set)]]></category>

		<guid isPermaLink="false">http://www.onlinemarketinganalytics.com.au/?p=80</guid>
		<description><![CDATA[One of the most confusing things for people once they begin to use analytics and really start to drill down into the data is seeing entries or information where Google Analytics displays that it isn&#8217;t quite too sure what is going on. So in this post I will highlight some of the ones I commonly [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most confusing things for people once they begin to use analytics and really start to drill down into the data is seeing entries or information where Google Analytics displays that it isn&#8217;t quite too sure what is going on. So in this post I will highlight some of the ones I commonly see and offer a brief explanation on how to interpret the data.<span id="more-80"></span></p>
<h2>(not set)</h2>
<p>Now this item can appear in various places in various Google Analytics reports. So I will attempt to cover the most common areas it can appear and explain the reasons why.</p>
<h3>(not set) in the Geographic Report</h3>
<p>GA picks up geographic data primarily from your IP address. This IP lookup is conducted using a 3rd party vendor (ie. not Google themselves). According to the documentation then, if the 3rd party was unable to identify the location of your IP, it will set it as (not set). If your visits view your website through some proxies, it could be one reason for this.</p>
<h3>(not set) in the Campaign Report</h3>
<p>This one is a nice and easy reason. Basically you haven&#8217;t tagged your links correctly and there was a problem parsing the data. Use one of the many URL builders and other analytics tools provided by Google and others to make sure your custom tagged URLs are formatted correctly.</p>
<h3>(not set) in Traffic Report</h3>
<p>Since there are new portals, search engines, social networks and other websites appearing online almost everyday, it is impossible to keep up with them all. Hence for some of the smaller ones that are yet to gain traction, they are not included in Google&#8217;s list (think Bing - when it was launched Google was a few days behind on including it in its search engines list). So until GA figures out the best way to identify the particular website, it sets it as (not set).</p>
<p>In line with that, it is good to note that it is possible for Google.com to come through as a <strong>Referring Website</strong> when by all rights it should be coming from a search engine. This occurs when someone comes to your website from Google, but not from a SERP (Search Engine Results Page). For example if you use iGoogle for your RSS feeds, and someone clicks thru from that to read your blog post, that is a Google.com referral. </p>
<h2>So how can you Minimise the Amount of Times (not set) Appears?</h2>
<p>The easiest way is to make sure if you are running any campaigns (PPC, email marketing, social media, etc) to make sure your links are being tagged correctly. Stay tuned for a future post on how to do that. </p>
<p>Other than that? Analytics data collection is not perfect, and we all know that. So unfortunately we just have to deal with these little bumps. In reality it should only be an extremely small subset of your data. If it is accounting for more than 20%, its time to dig deeper into your Analytics installation for some underlying problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onlinemarketinganalytics.com.au/resources/when-things-are-not-set.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Tag Your Visitors With Cookie Hacks</title>
		<link>http://www.onlinemarketinganalytics.com.au/ga-hacks/tag-your-visitors-with-cookie-hacks.html</link>
		<comments>http://www.onlinemarketinganalytics.com.au/ga-hacks/tag-your-visitors-with-cookie-hacks.html#comments</comments>
		<pubDate>Thu, 23 Jul 2009 05:08:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Analytics Hacks]]></category>

		<guid isPermaLink="false">http://www.onlinemarketinganalytics.com.au/?p=71</guid>
		<description><![CDATA[If you haven&#8217;t already noticed, I have been researching quite a bit regarding hacking up the standard Google Analytics code, specifically how cookies are set, in order to further refine the data that you are collecting. This week was inspired off a post from the Official Google Analytics Blog outlining a few tips regarding adding [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t already noticed, I have been researching quite a bit regarding hacking up the standard Google Analytics code, specifically how cookies are set, in order to further refine the data that you are collecting. This week was inspired off a post from the <a href="http://analytics.blogspot.com/2009/07/using-google-analytics-to-determine.html">Official Google Analytics Blog</a> outlining a few tips regarding adding demographic data to the numbers, giving them more meaning.</p>
<p>I want to take it in a little bit of a different direction. I find it difficult (probably as most bloggers do) to generate feedback on my posts in the form of comments or tracbacks. And to be honest, I can&#8217;t really determine what would influence someone to leave a comment versus someone who reads regularly. The more experienced bloggers would be able to give me a clear answer, however I am going to try to work it out with Google Analytics.<span id="more-71"></span></p>
<h2>Modifying the GA Code - setVar</h2>
<p>The answer lies with the <code>pageTracker._setVar()</code> function of the Analytics API. What this function does according to the documentation is allow you to create custom variables that you can tag your visitors with when they visit your website. It adds it to the <code>__utmv</code> cookie and lasts for 2 years.</p>
<p>How we are going to do it today is everytime someone comments on a blog that I author for, it will tag that visitor as a &#8220;commenter&#8221;. That will allow me to monitor their movement through the website and determine any correlations between commenters, return visitors and converters.</p>
<h2>How do we do it in Wordpress?</h2>
<p>Very easily in fact. Look for the file that generates your comments template and styling. Generally it is in your theme directory and the comments.php file.</p>
<p>Much like all the other Javascript function calls, I will be attaching it as an onclick event on the submit button. We make the assumption that someone has filled in all the key elements of the comment (name, email, the comment itself) and is now ready to submit. Whether the person is a spammer or not, or even if the comment is approved or not does not matter. The fact is someone (or something) was motivated enough to leave something behind on their visit.</p>
<p>My submit button code now looks like this:</p>
<p><code><br />
<input id="submit" onclick="pageTracker._setVar('commenter');" name="submit" type="submit" value="Submit Comment" /></code></p>
<p>After about 24 hours or so, you will be able to view your <strong>Google Analytics User Defined Reports</strong> and see that information in there. For further refinement you can even set up a separate profile to generate reports specific to their actions across the website.</p>
<p>Tune in next week as I further dig around the cookie structures of Analytics and see what other gems are in store. After a few months of data collection, I will be giving tips on what to do with the data once we have collected it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onlinemarketinganalytics.com.au/ga-hacks/tag-your-visitors-with-cookie-hacks.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Whose Reading Your Whole Blog Post?</title>
		<link>http://www.onlinemarketinganalytics.com.au/tutorials/whose-reading-your-whole-blog-post.html</link>
		<comments>http://www.onlinemarketinganalytics.com.au/tutorials/whose-reading-your-whole-blog-post.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 06:27:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[tutorials]]></category>

		<category><![CDATA[event tracking]]></category>

		<guid isPermaLink="false">http://www.onlinemarketinganalytics.com.au/?p=62</guid>
		<description><![CDATA[Most blogs that I read/visit regularly have only a snippet or extract about the post on the homepage or its series of archives. This I feel is a great idea because it allows me to read a sentence or two before I decide to progress. However, what I have always wondered is what the click [...]]]></description>
			<content:encoded><![CDATA[<p>Most blogs that I read/visit regularly have only a snippet or extract about the post on the homepage or its series of archives. This I feel is a great idea because it allows me to read a sentence or two before I decide to progress. However, what I have always wondered is what the click through rate is for my posts - are people compelled enough to read more? </p>
<p>Recently Google Analytics allows you to track events (such as clicks on objects on a web page) and I will show you how you can do this for your own Wordpress blog.<span id="more-62"></span></p>
<h2>Step 1: Have the Latest GA code</h2>
<p>In order for the Event Tracking code to log the events correctly, you need to use the <code>ga.js</code> code and not the legacy. Please check before going ahead.</p>
<h2>Find the Relevant Wordpress Theme Files</h2>
<p>Now we have to find out where in the Wordpress theme the link is generated that allows people to click through to the full post. But here is the catch - there is more than one way to go through to the post from these <code>index.php</code> and/or <code>archive.php</code> - the headline and the read more link. So we have 2 events to track:</p>
<ul>
<li>Visitors Clicking the Headline</li>
<li>Visitors Clicking the &#8216;read more&#8217; link</li>
</ul>
<h2>The Code to Add to the Anchor Tag</h2>
<p>Ok, so now you have found the location where the anchor tag is generated, its time to add our javascript code. It will follow this format:<br />
<code><a href="#" <strong>onClick=&#8221;pageTracker._trackEvent(&#8217;post-click-thrus&#8217;, &#8216;going-to-read&#8217;, &#8216;Identifier&#8217;);</strong>&#8220;>Play</a></code></p>
<p>Lets break this down parameter by parameter:</p>
<ul>
<li><strong>Category:</strong> This basically groups all our events under one kind of category - in this case <em>post-click-thrus</em></li>
<li><strong>Event:</strong> What this does is register the type of event that is performed under the category. In this case we can assume that if a visitor clicks on the &#8216;read more&#8217; link or blog title they are going through with the parameter <em>going-to-read</em></li>
<li><strong>Identifier:</strong> This will now tell us how we can identify this event, whether it was a &#8216;read more&#8217; click or a headline click. In this case we did <em>read-more-link</em>, we will need to create a separate event tracking for the headline, and I would use <em>headline-link</em> to identify that.</li>
<li>Source: <a href="http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html">Google Event Tracking Guide</a></li>
</ul>
<h2>Play the Waiting Game &#038; Checking the Data</h2>
<p>So where can we see the report? Well that is the easiest part. Google has put it in a very handy place, under the umbrella of the content reports. If you Content Report, depending on your setup it will be toward the end of the reports list, under the heading <strong>Event Tracking</strong>. The rest of the report is fairly straight forward with the data it provides. At a later date, we will talk about a quick and easy way to extract data from large analytics report.</p>
<p>Leave your comments as to any fancy implementations of event tracking you have done on your website/blog and we can add it to the list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onlinemarketinganalytics.com.au/tutorials/whose-reading-your-whole-blog-post.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google Analytics Cookies Lie</title>
		<link>http://www.onlinemarketinganalytics.com.au/ga-hacks/google-analytics-cookies-lie.html</link>
		<comments>http://www.onlinemarketinganalytics.com.au/ga-hacks/google-analytics-cookies-lie.html#comments</comments>
		<pubDate>Thu, 09 Jul 2009 07:14:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Analytics Hacks]]></category>

		<guid isPermaLink="false">http://www.onlinemarketinganalytics.com.au/?p=47</guid>
		<description><![CDATA[Over the last few weeks I have been going through the nitty gritty of the actual Javascript that is used by Google Analytics. And what I have found regarding how the Google Analytics Cookies work has shocked me. I cannot believe there hasn&#8217;t been more of an uproar about it on the Internet. When I [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.onlinemarketinganalytics.com.au/wp-content/uploads/2009/07/2809325401_2e03ec248b_m.jpg" alt="Google Lies" title="Google Lies" width="240" height="180" class="alignleft size-full wp-image-58" />Over the last few weeks I have been going through the nitty gritty of the actual Javascript that is used by Google Analytics. And what I have found regarding how the <strong>Google Analytics Cookies</strong> work has shocked me. I cannot believe there hasn&#8217;t been more of an uproar about it on the Internet. When I was searching there was a few mentions of it here and there, but this issue should have been voiced louder.<br />
<span id="more-47"></span></p>
<h2>The __UTMZ Cookie</h2>
<p>According Google themselves:</p>
<blockquote><p>When visitors reach your site via a search engine result, a direct link, or an ad that links to your page, Google Analytics stores the type of referral information in a cookie. The parameters in the cookie value string are parsed and sent in the GIF Request (in the utmcc variable). The expiration date for the cookie is set as 6 months into the future. This cookie gets updated with each subsequent page view to your site; thus it is used to determine visitor navigation within your site.</p></blockquote>
<p>So what this means whatever method was used by that visitor to access your website for the very first time is how it is recorded for each and every visit after that as long as the cookie lasts on the visitors computer.</p>
<h3>So is That a Good Thing?</h3>
<p>Well it all depends. Where this cookie comes to the fore is when someone is doing research, say &#8220;digital cameras&#8221; and then spends the next few hours researching. Whilst they might not convert on the first visit, they might come back towards the end of the research and buy based on that original search. Rightly then, that keyword gets the credit for the conversion, no matter how the visitor accessed the website later on down the track.</p>
<p>However, my problem with this particular default setting is that the cookie lasts for 6 months. Is that really a reasonable amount of time to expect someone to make a buying decision. Sure there are extreme cases were this kind of buying cycle exists, but I am positive it is not the norm. And I am also going to make the assumption that not many search marketers are aware of this themselves - or they know and use it to bias their monthly reports towards making them look like their campaigns better than they really are.</p>
<h2>How to Modify the Cookie</h2>
<p>Thankfully, all is not lost, as those in the know can now modify the standard Google Analytics javascript to modify the length the cookie hangs around for.</p>
<p>The function that you need to modify is:</p>
<p><code>pageTracker._setCookieTimeout("");</code><br />
The parameter to send to this function is really dependent on your own website&#8217;s needs and objectives. Cookies are stored based on the number of seconds. So if you wanted the cookie to last a day, the parameter should be <em>86400</em> or if you want it to last a month, try <em>2629743</em>.</p>
<h3>Conclusion</h3>
<p>By adding this little hack into your Google Analytics code, you will be left with a much more accurate representation of your website&#8217;s traffic patterns, completely tailored to your website.</p>
<p>If you have successfully done this with your installation, leave a comment below and share what you do to improve the accuracy of your website&#8217;s data.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onlinemarketinganalytics.com.au/ga-hacks/google-analytics-cookies-lie.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>3 Great Analytics Education Websites</title>
		<link>http://www.onlinemarketinganalytics.com.au/resources/3-great-analytics-education-websites.html</link>
		<comments>http://www.onlinemarketinganalytics.com.au/resources/3-great-analytics-education-websites.html#comments</comments>
		<pubDate>Fri, 26 Jun 2009 05:58:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.onlinemarketinganalytics.com.au/?p=31</guid>
		<description><![CDATA[For most businesses, having a dedicated, inhouse analytics specialist would not be a cost effective exercise. And whilst I am the first to promote that as many resources as possible should be put towards online marketing, website development and analysis, most businesses will never take those steps. So where does that leave you in your [...]]]></description>
			<content:encoded><![CDATA[<p>For most businesses, having a dedicated, inhouse analytics specialist would not be a cost effective exercise. And whilst I am the first to promote that as many resources as possible should be put towards online marketing, website development and analysis, most businesses will never take those steps. So where does that leave you in your organisation? An analytics evangelist with one small voice in a room full of managers and executives.</p>
<p><img src="http://www.onlinemarketinganalytics.com.au/wp-content/uploads/mags.jpg" alt="Analytics Learning Resources"/></p>
<p>What you then, you who understands the important of web traffic data and the analysis of it, need to do is get proactive. You need to spend some time (even in secret) to prepare your case to present to the thought leaders or the decision makers. Most of these people very rarely argue with the facts and figures once presented correctly. What I plan to do here is provide you with the websites and people you should be paying attention to, so that you can give a well rounded educated response and argument to get your agenda at the front of their minds.</p>
<p><span id="more-31"></span></p>
<h2>Occam’s Razor by Avinash Kaushik</h2>
<p><a href="http://www.kaushik.net/avinash/">Avinash</a> is widely regarded by many as a major authority in the space. His books and website helps many with no understanding at all become self-taught experts in the field. I have found his book to be of great benefit when trying to educate clients and others about how web traffic actually works.</p>
<p>For your own analysis, his blog posts provide an almost step-by-step guide on how to segment data properly and create reports for your superiors. If you have never done advanced segmentation on traffic data previously, you can spend days going through his guides.</p>
<h2>Google Analytics Official Blog</h2>
<p><a href="http://analytics.blogspot.com/2009/06/data-driven-discussions-series-premiere.html">The Official Google Analytics blog</a> is a great place to stay aware of the latest feature releases and overall traffic analysis processes. The main reason why I plug this is due to the fact that for most SMEs, Google Analytics would be the analytics package of choice, and hence, it makes sense that people should become experts in the tool.</p>
<p>As of today as well, they have just started with Data Driven Discussion, including Avinash mentioned above. Staying in touch with the experts whilst learning is the best way to go about it. I myself prefer watching videos then reading, and hence why I think I am going to be a big fan of these episodes.</p>
<h2>KISS Metrics</h2>
<p><a href="http://blog.kissmetrics.com/">The Kiss Metrics Blog</a> is probably my favourite resource of them all. I really appreciate good website design (which is how I originally found the website) and then realised that it covered my next love, analytics! So not only is this website super sexy but also incredibly useful in providing tips and suggestions for beginners and experts alike.</p>
<h3>Conclusion</h3>
<p>One thing you will notice though as you progress through your learning and research of analytics is how important userability is when it comes to traffic analysis and website performance. The two go hand in hand so much that many of my clients have experienced a massive increase in volume of traffic, bounce rate and conversions by doing simple little things such as improving meta descriptions, dedicated landing pages and internal search analysis.</p>
<p>So the advice I leave you with is to visit these websites, learn from them, compile a few reports, prepare a presentation, get your voice heard, and then get the resources that you are craving. By the team this is all done, you will have the skills (maybe not the experience) in truely getting the most out of your team and the tools.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onlinemarketinganalytics.com.au/resources/3-great-analytics-education-websites.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>What Is Skewing Your Data</title>
		<link>http://www.onlinemarketinganalytics.com.au/analytics-tips/what-is-skewing-your-data.html</link>
		<comments>http://www.onlinemarketinganalytics.com.au/analytics-tips/what-is-skewing-your-data.html#comments</comments>
		<pubDate>Mon, 15 Jun 2009 07:06:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Analytics Tips]]></category>

		<guid isPermaLink="false">http://www.onlinemarketinganalytics.com.au/?p=22</guid>
		<description><![CDATA[Most analytics professionals will tell you almost immediately that there is no such thing as 100% accurate website traffic data. And they would be perfectly correct in saying so. However, there are many tasks and everyday type browsing that would be skewing the results to appear more successful than they actually are. I will outline [...]]]></description>
			<content:encoded><![CDATA[<p>Most analytics professionals will tell you almost immediately that there is no such thing as 100% accurate website traffic data. And they would be perfectly correct in saying so. However, there are many tasks and everyday type browsing that would be skewing the results to appear more successful than they actually are. I will outline a few easy, two second tips and steps to make sure that you are not boosting your traffic data unnaturally.</p>
<p><span id="more-22"></span></p>
<h2>Block Your Business&#8217; IP</h2>
<p>The first step of any Google Analytics install should be to block out any fixed IPs used by your organisation. If your website is used by your sales team or support staff (*cough* their homepage *cough*) - this traffic shouldn&#8217;t be included in with the marketing objectives. This even includes search engine referrals as many less savvy employees could still use an engine to locate the company website.</p>
<h2>New Visitors Aren&#8217;t Always New</h2>
<p>Most analytics figure out if someone is new or old by various means, one of which is cookies. There are many web surfers out there that clean out their cookies regularly or don&#8217;t allow anyone to drop cookies on their website. Because of this they will be counted as new each and everytime.</p>
<p>For those that do not know/care about the cookies, these generally expire after 30 days from the last visit. From my point of view if no one has looked at your website for a period of at least 30 days, I don&#8217;t have any problems about counting that as a new visitor as there is probably a good chance that your website has changed in one way or another in that period.</p>
<h2>There are Very Few One Night Stand Conversions</h2>
<p>We setup goals and funnels that we all wish our visitors took each and everytime they come to our website. But we know in reality, only a small percentage of visitors will go landing page -> goal conversion page -> thankyou page in that exact order. That sounds more like the behaviour of a customer that already is familar with the business and the products and services - but more importantly - trusts the organisation.</p>
<p>To get to the one night stand conversion you have to earn that visitor trust, and once you master this extremely difficult step, you can see a nice improvement in your conversion rates.</p>
<p>If you use dynamic IPs it becomes a little more difficult, but as much as you can there should be procedures in place to minimise self driven traffic (is that the term? Let me know in the comments if there is an official phrase).</p>
<h2>Website Overlay Link Percentages</h2>
<p>Everyone loves pretty reports, whether they are about web traffic, financials, or performance stats. When people start digging around Analytics, many a client have wanted to further understand the website overlay feature. I personally like this functionality (when it actually works) as it can easily disprove the long held stigma that nobody scrolls when they search the Internet.</p>
<p>Anyway, what everyone fails to note is that if there is more than 1 link pointing to the exact same URL on that page, it totals the clicks from all links to that page, and assigns them the same percentage. So if the top homepage link got 3 clicks out of 10, and the footer got 1, the total percentage of clicks for BOTH of those links would be 40%, not 30% and 10%.</p>
<p>I would still not put all my faith on this tool, but just be aware because I have to explain this part of Analytics on regular occassions.</p>
<p>So in conclusion, by keeping these points in mind when you are generating your reports and your analysis, you will get a much more well rounded picture of visitor trending and behaviour on your website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onlinemarketinganalytics.com.au/analytics-tips/what-is-skewing-your-data.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
