<?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>Web Analytics Central &#187; Google</title>
	<atom:link href="http://www.webanalyticscentral.com/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webanalyticscentral.com</link>
	<description>Everything is Better When Measured</description>
	<lastBuildDate>Mon, 02 Jan 2012 16:32:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Google Analytics Helpful Tip &#8211; Tracking Paypal Transactions</title>
		<link>http://www.webanalyticscentral.com/2011/12/06/google-analytics-helpful-tip-tracking-paypal-transactions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-analytics-helpful-tip-tracking-paypal-transactions</link>
		<comments>http://www.webanalyticscentral.com/2011/12/06/google-analytics-helpful-tip-tracking-paypal-transactions/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 21:43:09 +0000</pubDate>
		<dc:creator>Dorian D. Regester</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalyticscentral.com/?p=2376</guid>
		<description><![CDATA[Tracking ecommerce transactions in Google Analytics is pretty easy once you get the hang of what the required parameters and non-required ones are.  However how do you track purchases that are coming from Paypal? Well, within Google Analytics, this can be done but requires some extra work to be done on your part.  First thing [...]]]></description>
			<content:encoded><![CDATA[<p>Tracking ecommerce transactions in Google Analytics is pretty easy once you get the hang of what the required parameters and non-required ones are.  However how do you track purchases that are coming from Paypal?</p>
<p><span id="more-2376"></span>Well, within Google Analytics, this can be done but requires some extra work to be done on your part.  First thing you will need to do is, if you don&#8217;t have this already, create a thank you or order confirmation page that resides on your domain.  Within this page, make sure to add the GA tracking code to the page to denote a successful conversion has taken place. To grab the values being sent back from paypal, you will need to leverage either the GET or POST methods (depending on your current site setup).  If you need help properly configuring this, please feel free to <a title="Contact" href="http://www.webanalyticscentral.com/contact/">contact me</a>. You can also put these values into a cookie and then retrieve them when the user returns back to the site (making sure that the referring URL is from paypal and its the thank.php).</p>
<p>After this is done, please take the following steps within Paypal:</p>
<ol>
<li>Navigate to Paypal</li>
<li>Login</li>
<li>Go to My Account</li>
<li>Click on the Profile link</li>
<li>Click on Website Payment Preferences</li>
<li>Click the radio button for Auto Return to be ON. This will redirect your visitors back to your site once they finish the transaction on paypal&#8217;s site.</li>
<li>Add the URL to the page that you just created for your new onsite &#8220;thank you&#8221; or &#8220;order confirmation&#8221; pages</li>
<li>Within the destination URL, you will need to add the query string paramter: utm_nooveride=1.  This parameter ensures that traffic doesn&#8217;t overwrite referral data</li>
<li>Lastly, make sure that Payment Data Transfer is turned ON</li>
</ol>
<p>That&#8217;s it! With this in place, after modifying the thank you page you created to handle GET or POST method data being sent via Paypal, you will be able to track ecommerce transactions originating on Paypal.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticscentral.com/2011/12/06/google-analytics-helpful-tip-tracking-paypal-transactions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Analytics Helpful Tip &#8211; Non Interaction Events</title>
		<link>http://www.webanalyticscentral.com/2011/11/22/google-analytics-helpful-tip-non-interaction-events/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-analytics-helpful-tip-non-interaction-events</link>
		<comments>http://www.webanalyticscentral.com/2011/11/22/google-analytics-helpful-tip-non-interaction-events/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 20:16:38 +0000</pubDate>
		<dc:creator>Dorian D. Regester</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalyticscentral.com/?p=2440</guid>
		<description><![CDATA[Tracking events within google analytics is very easy to do leveraging the _trackEvent method.  However, what if you want to look at either including an event into your overall bounce rate or not.  This blog posting will describe how to implement this parameter to calculate a true bounce rate on your site. Before we go [...]]]></description>
			<content:encoded><![CDATA[<p>Tracking events within google analytics is very easy to do leveraging the _trackEvent method.  However, what if you want to look at either including an event into your overall bounce rate or not.  This blog posting will describe how to implement this parameter to calculate a true bounce rate on your site.</p>
<p><span id="more-2440"></span>Before we go into non-interaction, I wanted to show everyone the _trackEvent method:</p>
<p>_gaq.push(['_trackEvent', 'Category', 'Action', 'optional label', 'optional non-interaction']);</p>
<p>Non-interaction is the last parameter, a boolean which is an optional value, within the _trackEvent method that provides users with the ability to define how bounce rate is calculated on the given site when an event is trigggered.  This comes in handy if you have items on a given landing page that users can interact/interface with that should be considered when coming up with a true bounce rate as you might consider users interactions as engagement and thus do not want that factored into your overall bounce rate.  Lets look at an example.</p>
<p>Say you had a mortgage calculator on your home page that a user could interact with but that didn&#8217;t generate an additional page view. This is where the last parameter, opt_noninteraction, comes into play. By default, every time the _trackEvent is instantiated, Google Analytics sees that interaction and includes it in the bounce rate formula.  If you set this value to true, this will not be counted towards bounce rate.  So here is a key to easily remember the difference between them:</p>
<ul>
<li>True &#8211; will be counted in the bounce rate formula even if the visitor also triggers the event during the same session</li>
<li>False -  will not be counted as a bounce if the visitor also triggers the event during the same session</li>
</ul>
<p>That&#8217;s it.  With that extra parameter included in your _trackEvent calls, you will now be able to accurately factor in or out those events into your bounce rate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticscentral.com/2011/11/22/google-analytics-helpful-tip-non-interaction-events/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Helpful Tip &#8211; Setting Site Speed Sample Rate</title>
		<link>http://www.webanalyticscentral.com/2011/11/21/google-analytics-helpful-tip-setting-site-speed-sample-rate/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-analytics-helpful-tip-setting-site-speed-sample-rate</link>
		<comments>http://www.webanalyticscentral.com/2011/11/21/google-analytics-helpful-tip-setting-site-speed-sample-rate/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 21:13:27 +0000</pubDate>
		<dc:creator>Dorian D. Regester</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalyticscentral.com/?p=2434</guid>
		<description><![CDATA[With the recent release of GA, Google removed the need to pass _trackPageLoadTime method to track Site Speed on your website. However, if you need to adjust the sampling rate at which Google Analytics is currently set for, you will need to leverage the _setSiteSpeedSampleRate() method. This method removes the 1% default sampling that currently [...]]]></description>
			<content:encoded><![CDATA[<p>With the recent release of GA, Google removed the need to pass _trackPageLoadTime method to track Site Speed on your website. However, if you need to adjust the sampling rate at which Google Analytics is currently set for, you will need to leverage the _setSiteSpeedSampleRate() method.</p>
<p><span id="more-2434"></span>This method removes the 1% default sampling that currently makes up the data pool from which Site Speed is calculated from. A good rule of thumb is if your site has a smaller number of visitors, say under 200,000, then it is better to set this method to a value higher than the default.  By adjusting this, you will be able to see a larger slice of granular data for your page&#8217;s load time and other captured site speed metrics.  An example of this method in action is below:</p>
<p>_gaq.push(['_setSiteSpeedSampleRate', 10]);<br />
_gaq.push(['_trackPageview']);</p>
<p>In the above example, the setSiteSpeedSampleRate is set to 10% which is the maximum sampling percentage per web property allowed by Google Analytics.</p>
<p>That&#8217;s it! With this in place, you will be able to override the default sample rate for site speed and potentially provide increased granularity for business users to see their metrics for their respective pages.</p>
<p><span style="text-decoration: underline;">Please Note:</span><br />
In order to have the method function as expected, you will need to place the _setSiteSpeedSampleRate call before the _trackPageview call.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticscentral.com/2011/11/21/google-analytics-helpful-tip-setting-site-speed-sample-rate/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Analytics Helpful Tip &#8211; Tracking Social Media Interactions</title>
		<link>http://www.webanalyticscentral.com/2011/10/31/google-analytics-helpful-tip-tracking-social-media-interactions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-analytics-helpful-tip-tracking-social-media-interactions</link>
		<comments>http://www.webanalyticscentral.com/2011/10/31/google-analytics-helpful-tip-tracking-social-media-interactions/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 21:19:10 +0000</pubDate>
		<dc:creator>Dorian D. Regester</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalyticscentral.com/?p=2426</guid>
		<description><![CDATA[Are you looking to track your social sharing button links located on your website but do not know how to go about doing that within Google Analytics? This blog posting will introduce you to the _trackSocial method that was recently released from Google. Previously, you would have needed to use an event and wrap all [...]]]></description>
			<content:encoded><![CDATA[<p>Are you looking to track your social sharing button links located on your website but do not know how to go about doing that within Google Analytics? This blog posting will introduce you to the _trackSocial method that was recently released from Google.</p>
<p><span id="more-2426"></span>Previously, you would have needed to use an event and wrap all clicks within the social media sharing buttons to that event(s).  Now, however, Google has opened up a new method that will help in this effort. First, lets look into the method and parameters that make up the _trackSocial call:<br />
_trackSocial(network, socialAction, target, pagePath)</p>
<p>In the above method, the first two parameters, network and socialAction are required.  Network is the domain or social media channel that the action occurs on (i.e. Twitter, Okrut, Facebook, etc). The socialAction parameter is designated to capture the action type that the user interacted/interfaced with (i.e. like, tweet, send to a friend, etc).</p>
<p>The next two parameters, target and pagePath, are optional values.  Target is normally the URL target that the user clicked on.  However, if this isn&#8217;t of value to you, you can always reclassify this parameter to house any relevant ID (such as an article/blog/product ID).  One thing to keep in mind though is that if the user clicks on an item say a like or a send to a friend next to an article, you wont need to pass a value for this parameter since the the current URL is passed by default. The last parameter is the pagePath which captures the page by path (and not the actual full URL path) from the page that the action happened on.  This value is only needed in the instance where you are using virtual or custom page paths for reporting.</p>
<p>So a full _trackSocial method would look similar to:</p>
<p>_gaq.push(['_trackSocial', 'Twitter', 'Follow-Us', '12345', 'http://www.mysite.com/article12345']);</p>
<p>where the 12345 is the ID identifying the target and the URL is the page path.</p>
<p><span style="text-decoration: underline;">Please Note:</span><br />
If you wish to leave the target value blank but pass in a value for the pagePath, you will need to explictly specify &#8220;undefined&#8221; within the code otherwise it will not track correctly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticscentral.com/2011/10/31/google-analytics-helpful-tip-tracking-social-media-interactions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Helpful Tip &#8211; Turning Off Google +1 Tracking</title>
		<link>http://www.webanalyticscentral.com/2011/10/31/google-analytics-helpful-tip-turning-off-google-1-tracking/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-analytics-helpful-tip-turning-off-google-1-tracking</link>
		<comments>http://www.webanalyticscentral.com/2011/10/31/google-analytics-helpful-tip-turning-off-google-1-tracking/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 19:59:10 +0000</pubDate>
		<dc:creator>Dorian D. Regester</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalyticscentral.com/?p=2424</guid>
		<description><![CDATA[Google Analytics, out of the box, is able to track the interaction that your end users are having with the Google +1 functionality on your site. This blog posting will help you disable the tracking (should you need to do so). One reason why someone would want to disable this is if they are using [...]]]></description>
			<content:encoded><![CDATA[<p>Google Analytics, out of the box, is able to track the interaction that your end users are having with the Google +1 functionality on your site. This blog posting will help you disable the tracking (should you need to do so).</p>
<p><span id="more-2424"></span>One reason why someone would want to disable this is if they are using _trackPageview() to create virtual URLs the same URL can and will be reported between the social tracking and the page level tracking.  This will skew results.  To ensure that this doesn&#8217;t occur, you can add the following three lines of code prior to the asynchronous GA tracking snippet:</p>
<p>&lt;script src=&#8221;https://apis.google.com/js/plusone.js&#8221;&gt;</p>
<p>google_analytics: false</p>
<p>&lt;/script&gt;</p>
<p>Now the default tracking has been disabled.  To have +1 tracking within your GA account, you will need to create JS logic that calls the _trackSocial() method with your desired parameters.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticscentral.com/2011/10/31/google-analytics-helpful-tip-turning-off-google-1-tracking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Helpful Tip &#8211; Tracking Page Load Speed</title>
		<link>http://www.webanalyticscentral.com/2011/10/31/google-analytics-helpful-tip-tracking-page-load-speed/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-analytics-helpful-tip-tracking-page-load-speed</link>
		<comments>http://www.webanalyticscentral.com/2011/10/31/google-analytics-helpful-tip-tracking-page-load-speed/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 16:36:09 +0000</pubDate>
		<dc:creator>Dorian D. Regester</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalyticscentral.com/?p=2421</guid>
		<description><![CDATA[Tracking page load speed, within Google Analytics, is a great feature to enable to see if the load times are adversely impacting the overall user experience.  This blog posting will explain how you can begin tracking this within GA leveraging the _trackPageLoadTime() method. Page Load tracking will appear within the Content section of the Google [...]]]></description>
			<content:encoded><![CDATA[<p>Tracking page load speed, within Google Analytics, is a great feature to enable to see if the load times are adversely impacting the overall user experience.  This blog posting will explain how you can begin tracking this within GA leveraging the _trackPageLoadTime() method.</p>
<p><span id="more-2421"></span>Page Load tracking will appear within the Content section of the Google Analytics interface.  This has no impact on your overall bounce rate and is really easy to add in.  To add in, you will need to add the following tag below the _trackPageview() call:<br />
_gaq.push(['_trackPageview']);</p>
<p>_gaq.push(['_trackPageLoadTime']);</p>
<p>That&#8217;s it.  You will be able to verify if this is tracking correctly by looking at the Content section 24 hours after implementing.  If data is there, then you are set.  If not, check your coding to make sure there are no errors.</p>
<p><span style="text-decoration: underline;">Please Note:</span><br />
The page load tracking for Google Analytics only happens for visits from browsers that support the HTML5 (specifically the NavigationTiming interface) or have the Google toolbar installed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticscentral.com/2011/10/31/google-analytics-helpful-tip-tracking-page-load-speed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Analytics Helpful Tip &#8211; Assigning Value to Soft Goals</title>
		<link>http://www.webanalyticscentral.com/2011/10/28/google-analytics-helpful-tip-assigning-value-to-soft-goals/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-analytics-helpful-tip-assigning-value-to-soft-goals</link>
		<comments>http://www.webanalyticscentral.com/2011/10/28/google-analytics-helpful-tip-assigning-value-to-soft-goals/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 23:03:44 +0000</pubDate>
		<dc:creator>Dorian D. Regester</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalyticscentral.com/?p=2416</guid>
		<description><![CDATA[Goal tracking via google analytics is a good first step to ensuring that you are measuring success. But setting up and leveraging goals don&#8217;t amount to much if you can&#8217;t assign a real value to them. Let&#8217;s say you sign up a new user for service but it cost you 20 dollars on advertising. While [...]]]></description>
			<content:encoded><![CDATA[<p>Goal tracking via google analytics is a good first step to ensuring that you are measuring success. But setting up and leveraging goals don&#8217;t amount to much if you can&#8217;t assign a real value to them.</p>
<p><span id="more-2416"></span>Let&#8217;s say you sign up a new user for service but it cost you 20 dollars on advertising. While it drove revenue, it actually hurt the bottom line since it was an unprofitable sign up.   Without putting value to this action, you would not have gleamed this insight and would think that it was worth wild to continue to do. So what exactly are soft goals? Soft goals are goals that don&#8217;t instrinsically drive revenue but are important to know how engaged visitors are on your site. To calculate the value of soft goals, you need to use the following calculation:</p>
<p>Soft goal = Percent of goal value (specific goal/total goals) x Conversion rate x Avg customer value</p>
<p>Breaking down the above equation,</p>
<ul>
<li>percent goal value takes the goal. In this example new user sign up divided by total goals.</li>
<li>conversion rate can be shown by looking at the percent conversions (percent of uvs who then purchased)</li>
<li>average value generated by each customer per year</li>
</ul>
<p>With this in place, you can begin to measure the impact and value each of these &#8220;soft goals&#8221; present. Remember that this isn&#8217;t an exact equation but more of one that will help you begin to see the importance (or lack thereof) to these goals.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticscentral.com/2011/10/28/google-analytics-helpful-tip-assigning-value-to-soft-goals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Helpful Tip &#8211; Tracking Form Abandonment</title>
		<link>http://www.webanalyticscentral.com/2011/09/15/google-analytics-helpful-tip-tracking-form-abandonment/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-analytics-helpful-tip-tracking-form-abandonment</link>
		<comments>http://www.webanalyticscentral.com/2011/09/15/google-analytics-helpful-tip-tracking-form-abandonment/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 21:39:03 +0000</pubDate>
		<dc:creator>Dorian D. Regester</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalyticscentral.com/?p=2410</guid>
		<description><![CDATA[Getting form field abandonment within Google Analytics isn&#8217;t as difficult as you might have initially thought it was.  This blog posting will describe the necessary steps needed to implement this solution. The way we can tackle this is to make each click into the form field its on page view (we would group it as [...]]]></description>
			<content:encoded><![CDATA[<p>Getting form field abandonment within Google Analytics isn&#8217;t as difficult as you might have initially thought it was.  This blog posting will describe the necessary steps needed to implement this solution.</p>
<p><span id="more-2410"></span>The way we can tackle this is to make each click into the form field its on page view (we would group it as /registration_funnel/name, age, gender, etc) and then set up a funnel based on URL destination.  So if it was a 5 step funnel we would have as onClick into the form:</p>
<p>pageTracker._trackPageview(&#8220;/registration_funnel/name&#8221;);<br />
pageTracker._trackPageview(&#8220;/registration_funnel/address&#8221;);<br />
pageTracker._trackPageview(&#8220;/registration_funnel/state&#8221;);<br />
pageTracker._trackPageview(&#8220;/registration_funnel/zip&#8221;);<br />
pageTracker._trackPageview(&#8220;/registration_funnel/email&#8221;);</p>
<p>Then, we would set up each step of the registration funnel to be:</p>
<p>http://www.domain.com/registration_funnel/name.html</p>
<p>http://www.domain.com/registration_funnel/address.html</p>
<p>http://www.domain.com/registration_funnel/state.html</p>
<p>http://www.domain.com/registration_funnel/zip.html</p>
<p>http://www.domain.com/registration_funnel/email.html</p>
<p>Then within Goals -&gt; Funnel Visualization, you will see the fallout by each field vs. just looking at fallout from page to page.  This is extremely helpful if you are looking to see whether your form is too long (and asks for too much information) or its just right.</p>
<p><span style="text-decoration: underline;">Please Note:</span></p>
<ul>
<li>This will need to roll into its own reporting suite as passing these as page views will grossly inflate the page view stats.</li>
<li>To improve the data capture and accuracy of the data, it is recommended to only capture the value once per session.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticscentral.com/2011/09/15/google-analytics-helpful-tip-tracking-form-abandonment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Helpful Tip &#8211; Tracking Button Revenue Contribution</title>
		<link>http://www.webanalyticscentral.com/2011/09/15/google-analytics-helpful-tip-tracking-button-revenue-contribution/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-analytics-helpful-tip-tracking-button-revenue-contribution</link>
		<comments>http://www.webanalyticscentral.com/2011/09/15/google-analytics-helpful-tip-tracking-button-revenue-contribution/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 21:17:51 +0000</pubDate>
		<dc:creator>Dorian D. Regester</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalyticscentral.com/?p=2407</guid>
		<description><![CDATA[Within Google Analytics, you have the ability to track button click revenue contribution back to the given creative to see how much it is influencing purchasing on your site.  This blog posting will describe how to achieve that within your given implementation. So lets just say you have three links on your landing page that [...]]]></description>
			<content:encoded><![CDATA[<p>Within Google Analytics, you have the ability to track button click revenue contribution back to the given creative to see how much it is influencing purchasing on your site.  This blog posting will describe how to achieve that within your given implementation.</p>
<p><span id="more-2407"></span>So lets just say you have three links on your landing page that you want to track and see how effective they were in adding revenue to the bottom line.  You can leverage the _setCustomVar method to track all the creatives.  Below is an example of the code that would be needed:</p>
<p>&lt;a href=&#8221;recipe.htm&#8221; onClick=&#8221;_gaq.push(['_setCustomVar','1','Clicks','Recipe_Button',2]);&#8221;&gt;&lt;img src=&#8221;recipebutton.jpg&#8221;&gt;&lt;/a&gt;<br />
&lt;a href=&#8221;mentor.htm&#8221; onClick=&#8221;_gaq.push(['_setCustomVar','1','Clicks','Mentor_Button',2]);&#8221;&gt;&lt;img src=&#8221;recipebutton.jpg&#8221;&gt;&lt;/a&gt;<br />
&lt;a href=&#8221;homepage.htm&#8221; onClick=&#8221;_gaq.push(['_setCustomVar','1','Clicks','Homepage_Button',2]);&#8221;&gt;&lt;img src=&#8221;recipebutton.jpg&#8221;&gt;&lt;/a&gt;</p>
<p>Once you have this in place, you will need to set up the conversion page as a goal within the interface.  Then you will be able to see the contribution that the button drove to registrations.  To see your contribution stats, just navigate to Visitors -&gt; Custom Variables and then click on the Ecommerce tab.  There you go.  You can take it even further by creating advanced segments for these users (depending on their behaviors) to then compare that segment to the total traffic to see how it influences all captured KPIs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticscentral.com/2011/09/15/google-analytics-helpful-tip-tracking-button-revenue-contribution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Helpful Tip &#8211; Tracking Form Entry Values</title>
		<link>http://www.webanalyticscentral.com/2011/09/14/google-analytics-helpful-tip-tracking-form-entry-values/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-analytics-helpful-tip-tracking-form-entry-values</link>
		<comments>http://www.webanalyticscentral.com/2011/09/14/google-analytics-helpful-tip-tracking-form-entry-values/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 16:15:40 +0000</pubDate>
		<dc:creator>Dorian D. Regester</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://www.webanalyticscentral.com/?p=2402</guid>
		<description><![CDATA[Are you looking to track what users are entering into your forms but do not know how to achieve this? This blog posting will help you begin to track these fields within Google Analytics so that you can begin to take action off of the data captured. To track form entry values, we will need [...]]]></description>
			<content:encoded><![CDATA[<p>Are you looking to track what users are entering into your forms but do not know how to achieve this? This blog posting will help you begin to track these fields within Google Analytics so that you can begin to take action off of the data captured.</p>
<p><span id="more-2402"></span>To track form entry values, we will need to leverage the _trackEvent method and either store the value in a session cookie and then after submission pass it to Google Analytics or put it into a temporary container (cookie) and pass it after user leaves current field and moves to the next one.</p>
<p>I think the onSubmission method makes the most sense and would be the easiest to implement.  So the code for the _trackEvent would look similar to:</p>
<p>Example of trackEvent method:<br />
_gaq.push(['_trackEvent', 'Form Entries', '&lt;field name&gt;', '&lt;field value&gt;'])&#8217;</p>
<p>Example of trackEvent method populated with dummy values:<br />
_gaq.push(['_trackEvent', 'Form Entries', 'Name', 'Derek Jeter'])&#8217;<br />
_gaq.push(['_trackEvent', 'Form Entries', 'State', 'NY'])&#8217;</p>
<p>That&#8217;s it! Once you have this in place you will get to see the entry value&#8217;s influence on ecommerce and then create an advanced segment based on the value captured to see how it impacts the other captured key performance indicators.</p>
<p><span style="text-decoration: underline;">Please Note:</span></p>
<ul>
<li>The total combined length of any custom variable name and value may not exceed 64 bytes.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webanalyticscentral.com/2011/09/14/google-analytics-helpful-tip-tracking-form-entry-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

