<?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>Analytics &#8211; Adwords Consultant India : DigitalSRC</title>
	<atom:link href="https://digitalsrc.com/blog/category/analytics/feed/" rel="self" type="application/rss+xml" />
	<link>https://digitalsrc.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 23 Feb 2023 05:23:03 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.6.17</generator>
	<item>
		<title>GDPR Compliance for Google Analytics : How To</title>
		<link>https://digitalsrc.com/blog/gdpr-compliance-for-google-analytics-how-to/</link>
					<comments>https://digitalsrc.com/blog/gdpr-compliance-for-google-analytics-how-to/#respond</comments>
		
		<dc:creator><![CDATA[digitalSRC]]></dc:creator>
		<pubDate>Fri, 25 May 2018 14:48:55 +0000</pubDate>
				<category><![CDATA[Google analytics]]></category>
		<category><![CDATA[GDPR]]></category>
		<guid isPermaLink="false">http://digitalsrc.com/blog/?p=1658</guid>

					<description><![CDATA[<p>Google Analytics is by far the most popular web analytics application that is used across the world. It is used both by individuals and small companies to large Fortune 500 brands. As per this study in 2015, almost 70% of Fortune 500 used Google Analytics as their web analytics platform. If you are one of [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/gdpr-compliance-for-google-analytics-how-to/">GDPR Compliance for Google Analytics : How To</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" class="aligncenter size-full wp-image-1665" src="http://digitalsrc.com/blog/wp-content/uploads/2018/05/Google-Analytics-GDPR-Compliance.png" alt="" width="568" height="286" srcset="https://digitalsrc.com/blog/wp-content/uploads/2018/05/Google-Analytics-GDPR-Compliance.png 568w, https://digitalsrc.com/blog/wp-content/uploads/2018/05/Google-Analytics-GDPR-Compliance-300x151.png 300w" sizes="(max-width: 568px) 100vw, 568px" /></p>
<p>Google Analytics is by far the most popular web analytics application that is used across the world. It is used both by individuals and small companies to large Fortune 500 brands. As per this study in 2015, almost 70% of Fortune 500 used Google Analytics as their web analytics platform. If you are one of those millions of Google Analytics users and you are in Europe or deal with clients/ visitors from EU, you need to ensure that you are GDPR compliant.</p>
<p>While we love to rely on Google and think that they will take care of everything for proper GDPR compliance there are few things that you need to do too.</p>
<p>At a very broad level GDPR asks you not to collect and process any personal data without the consent of the data subject (user). Now before you tell me that Google Analytics data is anonymized and aggregated, let me show you couple of personal data points that could be captured in Google Analytics and put you on the wrong side of GDPR.</p>
<ul>
<li>Google Analytics captures IP addresses which is considered as Personal Data under GDPR</li>
<li>Also, if you are passing any PII through your URLs ( typically happens when you are using GET method to submit form data or you are trying to personalize user experience) you might end up with URLs looking like www.yourdomain.com/?name=x&amp;email=abc@gmail.com . Now all these URLs are captured in Google analytics and you are necessarily sharing this PII with Google. This is against Google’s T&amp;C as well as could mean serious trouble for you from GDPR perspective.</li>
</ul>
<p><span id="more-1658"></span></p>
<h2>So how to make Google Analytics GDPR Compliant</h2>
<p><strong>Anonymize IP Address</strong><br />
Google Analytics does provide you an option to anonymize IP addresses. If done properly Google will anonymize the users IP address while still in memory and the data will be written to disc for processing only after the IP addresses have been anonymized. If you are interested in the technical details, you can read the technical explanation here.</p>
<h2>How to Anonymize IP Address in Google Analytics for GDPR Compliance</h2>
<p>This again will depend on the version of Google analytics code you are using. There are three versions that most people are using. You are either using universal analytics using ANALYTICS.JS or GA.JS or the latest GTAG.JS.</p>
<p><b>Anonymize</b><strong> IP for analytics.js</strong></p>
<p>&lt;script&gt;<br />
(function(i,s,o,g,r,a,m){i[&#8216;GoogleAnalyticsObject&#8217;]=r;i[r]=i[r]||function(){<br />
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),<br />
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)<br />
})(window,document,&#8217;script&#8217;,&#8217;//www.google-analytics.com/analytics.js&#8217;,&#8217;ga&#8217;);<br />
ga(&#8216;create&#8217;, &#8216;UA-XXXXXXX-X&#8217;, &#8216;auto&#8217;);<br />
<span style="color: #ff0000;"><strong>ga(&#8216;set&#8217;, &#8216;anonymizeIp&#8217;, true);</strong></span><br />
ga(&#8216;send&#8217;, &#8216;pageview&#8217;);<br />
&lt;/script&gt;</p>
<p>Your analytics code probably looks like the one given above. Look at the highlighted line. You need to add that one line of code to anonymize IP address and it is important that the line is set before the ga(‘send’, ‘pageview’); line.</p>
<hr />
<p><strong>Anonymize IP for gtag.js</strong></p>
<p>This is the latest Google analytics code and if you are already using gtag.js, you can follow the below process to anonymize IP for GDPR compliance.</p>
<p>In your gtag code you will notice the following line –</p>
<p>gtag(&#8216;config&#8217;, &#8216;UA-XXXXXX-XX&#8217;);</p>
<p>This needs to be replaced with</p>
<p><strong><span style="color: #ff0000;">gtag(&#8216;config&#8217;, &#8216;UA-XXXXXX-XX&#8217;, { &#8216;anonymize_ip&#8217;: true });</span></strong></p>
<hr />
<p><strong>Anonymize IP for ga.js</strong></p>
<p>In case you are still using the old ga.js Google analytics library, you can try using the below code. Note the line highlighted, you will need to add that to the script.</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
// Old Script<br />
var _gaq = _gaq || [];<br />
_gaq.push([&#8216;_setAccount&#8217;, &#8216;UA-XXXXXX-XX&#8217;]);<br />
<span style="color: #ff0000;"><strong>_gaq.push([&#8216;_gat._anonymizeIp&#8217;]);</strong></span><br />
_gaq.push([&#8216;_trackPageview&#8217;]);<br />
( function() {<br />
var ga = document.createElement(&#8216;script&#8217;); ga.type = &#8216;text/javascript&#8217;; ga.async = true;<br />
ga.src = (&#8216;https:&#8217; == document.location.protocol ? &#8216;https://ssl&#8217; : &#8216;http://www&#8217;) + &#8216;.google-analytics.com/ga.js&#8217;;<br />
var s = document.getElementsByTagName(&#8216;script&#8217;)[0]; s.parentNode.insertBefore(ga, s);<br />
})();<br />
&lt;/script&gt;</p>
<h2><strong>How to Remove Personal Data from Google Analytics for GDPR Compliance</strong></h2>
<p>Now let’s talk about how to remove the personal data that we might send to Google through URL parameters. It is not just important for GDPR compliance but it is also important for ensuring that you are compliant with Google Analytics’ terms of service.</p>
<p>You should ideally try to remove any PII right at the collection level of Google analytics and this requires some coding skills. Two excellent solutions for this has been given below and you can use any one of them that works for you.</p>
<p><a href="https://www.simoahava.com/gtm-tips/remove-pii-google-analytics-hits/">Simo Ahava’s Solution to Removing PII from GA</a></p>
<p><a href="https://brianclifton.com/blog/2017/09/07/remove-pii-from-google-analytics/">Brian Clifton’s Solution to redact PII from GA</a></p>
<p>If you have anonymized all IP addresses and are not capturing any PII in Google analytics, you should be ok with GDPR compliance.</p>
<p>If you are a marketer like me and looking to ensure proper GDPR compliance across your marketing function, you can refer to this <a href="http://digitalsrc.com/blog/gdpr-checklist-marketer-infographic/"><strong>GDPR Checklist for Marketers Infographic</strong></a>.</p>
<p>This is not a legal advise about GDPR and if you have any doubts or concern, please consult with a legal professional.</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/gdpr-compliance-for-google-analytics-how-to/">GDPR Compliance for Google Analytics : How To</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://digitalsrc.com/blog/gdpr-compliance-for-google-analytics-how-to/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Got my Google Analytics Certification</title>
		<link>https://digitalsrc.com/blog/got-my-google-analytics-certification/</link>
					<comments>https://digitalsrc.com/blog/got-my-google-analytics-certification/#respond</comments>
		
		<dc:creator><![CDATA[digitalSRC]]></dc:creator>
		<pubDate>Wed, 23 Oct 2013 13:10:55 +0000</pubDate>
				<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Google analytics]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[certification]]></category>
		<guid isPermaLink="false">http://digitalsrc.com/blog/?p=865</guid>

					<description><![CDATA[<p>Came across the certification course on Google Analytics offered by Google Analytics Academy in Facebook and decided to take a look. The course consists of 6 different units with multiple videos within each of them followed by a final exam. Though the course is pretty well designed and covers most of the aspects of Google [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/got-my-google-analytics-certification/">Got my Google Analytics Certification</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Came across the certification course on Google Analytics offered by Google Analytics Academy in Facebook and decided to take a look. The course consists of 6 different units with multiple videos within each of them followed by a final exam. Though the course is pretty well designed and covers most of the aspects of Google analytics, I watched a couple of videos randomly from the various lessons and there was not much new for me. So I decided to jump to the exam directly and Voila ! 10 Minutes later I got my Certification in Digital Analytics Fundamentals from Google Analytics Academy.</p>
<div id="attachment_870" style="width: 490px" class="wp-caption aligncenter"><a href="http://digitalsrc.com/blog/wp-content/uploads/2013/10/canvas1.png"><img aria-describedby="caption-attachment-870" loading="lazy" class="size-full wp-image-870" alt="Google Analytics Certified Consultant" src="http://digitalsrc.com/blog/wp-content/uploads/2013/10/canvas1.png" width="480" height="360" srcset="https://digitalsrc.com/blog/wp-content/uploads/2013/10/canvas1.png 960w, https://digitalsrc.com/blog/wp-content/uploads/2013/10/canvas1-300x225.png 300w" sizes="(max-width: 480px) 100vw, 480px" /></a><p id="caption-attachment-870" class="wp-caption-text">Now I am Google Analytics Certified <img src="https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p></div>
<p>Not that I think this certificate means much given the ease of the exam, no entry barrier as well as the short nature of the course but then it always feels good to see a nice certificate and especially when it comes from Google.</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/got-my-google-analytics-certification/">Got my Google Analytics Certification</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://digitalsrc.com/blog/got-my-google-analytics-certification/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Optimize Your Thank You Page Design to Increase User Engagement</title>
		<link>https://digitalsrc.com/blog/thank-you-page-design-increase-user-engagement/</link>
					<comments>https://digitalsrc.com/blog/thank-you-page-design-increase-user-engagement/#comments</comments>
		
		<dc:creator><![CDATA[digitalSRC]]></dc:creator>
		<pubDate>Fri, 20 Sep 2013 13:48:29 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Conversion Optimization]]></category>
		<category><![CDATA[Conversion]]></category>
		<category><![CDATA[conversion rate]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[thank you page]]></category>
		<category><![CDATA[user engagement]]></category>
		<guid isPermaLink="false">http://digitalsrc.com/blog/?p=834</guid>

					<description><![CDATA[<p>We all run our marketing campaigns with certain objectives – we want users to buy our products, fill up a lead form, download our white papers, subscribe to our feed or do some other action that fits into our business objective. The moment a user takes the necessary action, we try to play the courteous [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/thank-you-page-design-increase-user-engagement/">How to Optimize Your Thank You Page Design to Increase User Engagement</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We all run our marketing campaigns with certain objectives – we want users to buy our products, fill up a lead form, download our white papers, subscribe to our feed or do some other action that fits into our business objective. The moment a user takes the necessary action, we try to play the courteous host and show him a Thank You message. How many of you have actually spent time thinking how your thank you page design impacts your user?</p>
<p>Trust me, it does!</p>
<p>This is one of the most neglected areas in user experience optimization and in most cases people don’t pay much heed to the thank you page and in the process loses tons of opportunity! E-commerce industry is an exception as most e-commerce websites follow up their thank you pages with complementary products and special offers trying to up sell.</p>
<div id="attachment_835" style="width: 560px" class="wp-caption aligncenter"><a href="http://digitalsrc.com/blog/wp-content/uploads/2013/09/ThankYou-Page-Design.png"><img aria-describedby="caption-attachment-835" loading="lazy" class="size-full wp-image-835" src="http://digitalsrc.com/blog/wp-content/uploads/2013/09/ThankYou-Page-Design.png" alt="Thank You Page Design" width="550" height="218" srcset="https://digitalsrc.com/blog/wp-content/uploads/2013/09/ThankYou-Page-Design.png 550w, https://digitalsrc.com/blog/wp-content/uploads/2013/09/ThankYou-Page-Design-300x118.png 300w" sizes="(max-width: 550px) 100vw, 550px" /></a><p id="caption-attachment-835" class="wp-caption-text">Optimize thank you page design to increase user engagement.</p></div>
<p><strong>This attitude of negligence mainly stems from the facts..</strong></p>
<ol>
<li>The user has already converted (your business objective fulfilled) – why do you care anymore? You assume he is going to leave your website at this point.</li>
<li>Thank you pages are mostly dynamically generated and hidden from the search engines, so there is no SEO benefit to it.</li>
</ol>
<p><strong>What you fail to see in this case are..</strong></p>
<p><span id="more-834"></span></p>
<ol>
<li>If the user has converted once, it means he has got some trust on you. Why not build up on it and make him a loyal engaged user?</li>
<li>Thank You page may not be visible to search engines but it can still work as a gateway for your users to discover your other valuable content.</li>
</ol>
<p>In this article, I will try to layout a few basic aspects of Thank you page messaging and show you a live example of how changing the Thank You page design significantly increased the user engagement for website.</p>
<h2>Thank You Page Messaging</h2>
<p><strong>Thank You Page For Product Sales:</strong> This is already pretty well done by many e-commerce site but here’s just a refresher.</p>
<ul>
<li>Address the user by his name (you got it during the checkout process)</li>
<li>Try to mention the product/ products ordered</li>
<li>Give him the expected delivery time</li>
<li>Give him your customer care number ( Yes! even if you have it up their on your header)</li>
<li>Of course, you wont forget to show him other complementary products that can make his life so much better ( and fill your kitty)</li>
</ul>
<p><strong>Why do all these?</strong></p>
<ul>
<li>Address him by name: establishes a connection, people feel good to be recognized, even on the Internet</li>
<li>Repeat product name: giving him a last chance to check before you ship</li>
<li>Delivery Time + Customer Care Number: Represent yourself as a responsible, committed company, gives your customer peace of mind.</li>
<li>Complementary products:  What ? Don’t you want to sell more?</li>
</ul>
<p><strong>Thank You Page For Lead Forms:</strong> The essential elements that should be covered in your message includes:</p>
<ul>
<li>What is the next step: Is some one going to call / email him? When? Give an expected turn around time. (Respect your customer’s time, help them plan their work)</li>
<li>Provide an alternate contact info for the prospect to reach you / your sales team (what if he needs an immediate quote and can’t wait for your sales guy to call back?)</li>
<li>Depending on the industry you are, point him to some resource that further establishes your brand credibility (remember he just filled the lead form, you still need to sell)</li>
</ul>
<p><strong>Thank You Page for Whitepaper / E-book Download:</strong> So he is either researching the topic or trying to evaluate your knowledge/credibility in the domain. What do you give him ?</p>
<ul>
<li>Provide him with additional content on similar topic ( If he has downloaded your whitepaper on <a href="http://digitalsrc.com/blog/category/ppc/google-adwords/" target="_blank">Google Adwords</a> – show him your blog posts for <a href="http://digitalsrc.com/blog/3-adwords-competitor-analysis-metrics-to-improve-your-campaign/" target="_blank">3 key Adwords competitor metrics that can improve your campaigns</a> and <a href="http://digitalsrc.com/blog/5-adwords-mistakes-that-can-bleed-you-dry/" target="_blank">5 Adwords Mistakes that can you Bleed You Dry</a> – He is very likely to click )</li>
<li>Give him an option to subscribe (use this only if you publish regularly and can continue to provide useful content to him on regular basis)</li>
<li>Ask for a tweet (if you are helping him with your whitepaper, he might feel gracious to share the word with a tweet – Free Publicity!)</li>
</ul>
<h2>Thank You Page Design Case Study</h2>
<p>Ok, so enough of gyan ( theoretical knowledge) and now let me show you some real numbers from an experiment I did..<br />
(A special thanks to my employer<a href="http://www.xcubelabs.com" target="_blank"> [x]cube LABS</a>, for the permission to publish this screenshots and stats)</p>

<a href='https://digitalsrc.com/blog/thank-you-page-design-increase-user-engagement/thank-you-page-design-1/'><img width="150" height="150" src="https://digitalsrc.com/blog/wp-content/uploads/2013/09/Thank-you-page-design-1-150x150.png" class="attachment-thumbnail size-thumbnail" alt="Thank you page design" loading="lazy" /></a>
<a href='https://digitalsrc.com/blog/thank-you-page-design-increase-user-engagement/thank-you-page-design-2/'><img width="150" height="150" src="https://digitalsrc.com/blog/wp-content/uploads/2013/09/Thank-You-Page-Design-2-150x150.png" class="attachment-thumbnail size-thumbnail" alt="Thank you page design with CTA to Home Page" loading="lazy" /></a>
<a href='https://digitalsrc.com/blog/thank-you-page-design-increase-user-engagement/thank-you-page-design-3/'><img width="150" height="150" src="https://digitalsrc.com/blog/wp-content/uploads/2013/09/Thank-You-Page-Design-3-150x150.png" class="attachment-thumbnail size-thumbnail" alt="best performing thank you page design" loading="lazy" srcset="https://digitalsrc.com/blog/wp-content/uploads/2013/09/Thank-You-Page-Design-3-150x150.png 150w, https://digitalsrc.com/blog/wp-content/uploads/2013/09/Thank-You-Page-Design-3-300x300.png 300w, https://digitalsrc.com/blog/wp-content/uploads/2013/09/Thank-You-Page-Design-3.png 940w" sizes="(max-width: 150px) 100vw, 150px" /></a>

<b>Thank You Page Design Performance Statistics</b></p>
<table border="1" width="550" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td bgcolor="#999999"><b>Thank You Page</b></td>
<td bgcolor="#999999"><b>Avg. Time on Page</b></td>
<td bgcolor="#999999"><b>Exit %</b></td>
</tr>
<tr>
<td>Thank You Page 1</td>
<td>00:00:16</td>
<td>100%</td>
</tr>
<tr>
<td>Thank You Page 2</td>
<td>00:00:44</td>
<td>68%</td>
</tr>
<tr>
<td>Thank You Page 1</td>
<td>00:03:02</td>
<td>35%</td>
</tr>
</tbody>
</table>
<p>So now you know why your Thank You page could be as important as your landing page, give it a little more thought, make your Thank You work for you.</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/thank-you-page-design-increase-user-engagement/">How to Optimize Your Thank You Page Design to Increase User Engagement</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://digitalsrc.com/blog/thank-you-page-design-increase-user-engagement/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Google Analytics Filters That Every Website Should Have</title>
		<link>https://digitalsrc.com/blog/google-analytics-filters-that-every-website-should-have/</link>
					<comments>https://digitalsrc.com/blog/google-analytics-filters-that-every-website-should-have/#comments</comments>
		
		<dc:creator><![CDATA[digitalSRC]]></dc:creator>
		<pubDate>Fri, 13 Nov 2009 06:54:00 +0000</pubDate>
				<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Google analytics]]></category>
		<category><![CDATA[Filters]]></category>
		<category><![CDATA[Web analytics]]></category>
		<guid isPermaLink="false">http://digitalsrc.com/blog/google-analytics-filters-that-every-website-should-have/</guid>

					<description><![CDATA[<p>Google analytics is one of the most commonly used web analytics program today. While most of use it how many of us are actually aware of its full potential. This wonderful free analytics platform has got some really good features which if used effectively can provide great insights to marketers and business. Filters in Google [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/google-analytics-filters-that-every-website-should-have/">Google Analytics Filters That Every Website Should Have</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Google analytics is one of the most commonly used web analytics program today. While most of use it how many of us are actually aware of its full potential. This wonderful free analytics platform has got some really good features which if used effectively can provide great insights to marketers and business. Filters in Google Analytics is one such extremely powerful feature. Are you using it ?</p>
<p>Filters in Google analytics is one of the most powerful feature that allows for a lot of customization and manipulation of the data.  Filters are applied to the data that is received in a Google Analytics account to manipulate the final data to provide more accurate information. They allow you to include, exclude, search and replace data in addition to the options for creating custom and advanced filters.</p>
<p>In this article we will discuss some of the Filters that you must have, if you are using Google analytics for tracking and website performance.</p>
<p><span>How to Create a Filter in Google Analytics</span><br />You can access the Filters from your Profile Settings page in Google Analytics. Just click  “Add Filter” to add a new filter to a profile.<span id="more-46"></span></p>
<p><span>RegEx in Google Analytics</span><br />RegEx or Regular Expressions are extremely important when it comes to creating these filters.  Regular expressions are special characters that match or capture portions of a field, as well as the rules that govern all characters. You can read in details about the RegEx used in  Google Analytics <a href="http://www.google.com/support/analytics/bin/answer.py?hl=en&#038;answer=55582" rel="nofollow" target="_blank">here</a> .</p>
<p><span>Google Analytics Filter to Exclude Internal Traffic</span></p>
<p>Every website gets a fair share of internal traffic that is visits by webmasters, marketers and other members of the team who are part of the same business.  It is important to exclude this traffic from your analytics data as otherwise you would have an inflated traffic count.</p>
<p>Google analytics provides a predefined filter for this, after you have clicked on the “Add Filter” on Profile Settings page it would take you to the “Create New Filter” page. On that page..</p>
<ol type="a">
<li>Name for your Filter</li>
<p></p>
<li>Select “Predefined Filter” from the radio buttons</li>
<p></p>
<li>Under Filter Type, select “Exclude” in the First drop down box, “traffic from the IP addresses” in the second drop down and  “that are equal to” in the third dropdown.</li>
<p></p>
<li>A box would appear below, where you need to put  your / your client’s IP address that you want to exclude</li>
<p></p>
<li>Save Changes and you are done .</li>
</ol>
<p><span>Filter to Exclude Multiple IP addresses or a Range of IP Address ?</span></p>
<p>This is a very likely situation when your client has multiple offices in different locations and Google Analytics provides a solution for that as well. In such cases, we will have to use a “Custom Filter”.</p>
<ol type="a">
<li>Instead of “Predefined Filter” ( as in Step (b) above ) select Custom Filter radio button.</li>
<p></p>
<li>A new set of options would appear, select “Exclude” radio button.</li>
<p></p>
<li>In Filter Field drop down select “Visitor IP Address”</li>
<p></p>
<li>In Filter Pattern, you will have to mention the IP addresses, or the range of IP addresses using Regular Expressions , commonly referred to as Reg Ex.</li>
<p></p>
<li>Example 1 &#8211;  if you just need to exclude two IP addresses – 65.42.34.123 and 72.42.35.125 – your Filter Pattern would read as below<br />65\.42\.34\.123$|^72\.42\.35\.125$</li>
<p></p>
<li>Example 2 – if you need to exclude a range of IP address  &#8211; 65.42.34.1 &#8211; 65.42.34.25<br />Your Filter pattern would read as below<br />^65\.42\.34\.([1-9]|1[0-9]|2[0-5])$</li>
</ol>
<p><span><br />Google Analytics All Lowercase Filter</span></p>
<p>This filter is effective if your URLs are available both in uppercase and lowercase format. Google analytics in such case would treat these two as two different URLs and your data for the same page would be split between the two. The all lowercase filter converts all URLs to lower case.</p>
<p>The picture below explains how to set it up.</p>
<p><a href="http://4.bp.blogspot.com/_8G0wbEsC5tA/Svz_6DGpxeI/AAAAAAAAAPQ/ScEH_Bv1ubk/s1600-h/alllowercase.jpg"><img src="http://4.bp.blogspot.com/_8G0wbEsC5tA/Svz_6DGpxeI/AAAAAAAAAPQ/ScEH_Bv1ubk/s320/alllowercase.jpg" alt="" border="0"></a></p>
<div><span>Click Image to View Larger<br /></span></div>
<p><span>Full Referral URL Filter for Google Analytics</span></p>
<p>This is a marketer’s bliss <img src="https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" />  While Google analytics tells you which websites are referring traffic to you it doesn’t really show the exact complete URL that is the referral source.  If you are getting tons of referrals from a huge portal, it can often become difficult to identify the complete URL of your referral source. With this filter you would be able to see the full referral URL for your site.</p>
<p>However, this would require you to move a step further and not just use a Custom Filter but an Advanced Custom Filter.  The picture below shows how this is set up.</p>
<p><a href="http://2.bp.blogspot.com/_8G0wbEsC5tA/Sv0Af3UrDsI/AAAAAAAAAPY/uHTUg_vbcu0/s1600-h/FullReferralURL.jpg"><img src="http://2.bp.blogspot.com/_8G0wbEsC5tA/Sv0Af3UrDsI/AAAAAAAAAPY/uHTUg_vbcu0/s320/FullReferralURL.jpg" alt="" border="0"></a></p>
<div><span>Click Image to View Larger<br /></span></div>
<p>You would be getting the resulting data from this filter under User Defined Section in Visits.</p>
<p>These are just three of the common Google Analytics filter that you must apply if you are using GA. There are many more filters that can be used for various purposes and to get a lot of valuable information besides the great insight that GA provides by default.</p>
<p>Before we end, one word of caution.  Applying filters can make dramatic changes to the data in an account because it effects the data that is collected by GA. It is advisable to create a separate profile and then apply the filters to it and observe the data in both (with and without filters) profiles for initial few days to ensure that the filters are working as intended. Also, keep in mind that applying filters would affect future data and would not have any impact on the data that is already there in your account.</p>
<p>In case you would have any specific question or requirement about Google Analytics  implementation  feel free to contact me.</p>
<p><span><span>Related Posts:</span><br /><a href="http://seo-kolkata.blogspot.com/2007/04/ultimate-guide-to-google-analytics.html">Ultimate  Guide to Google Analytics Setup &#038; Ecommerce Tracking</a><br /><a href="http://seo-kolkata.blogspot.com/2008/12/measuring-impact-of-online-marketing-on.html">Measuring Impact of online marketing on offline presence</a><br /><a href="http://seo-kolkata.blogspot.com/2009/03/how-to-imporve-adwords-campaign-with.html">How to Improve Adwords Campaigns with Analytics</a></span></p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/google-analytics-filters-that-every-website-should-have/">Google Analytics Filters That Every Website Should Have</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://digitalsrc.com/blog/google-analytics-filters-that-every-website-should-have/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Change in Google Referral Strings &#8211; Another Attempt to Push Google Analytics ?</title>
		<link>https://digitalsrc.com/blog/change-in-google-referral-strings-another-attempt-to-push-google-analytics/</link>
					<comments>https://digitalsrc.com/blog/change-in-google-referral-strings-another-attempt-to-push-google-analytics/#comments</comments>
		
		<dc:creator><![CDATA[digitalSRC]]></dc:creator>
		<pubDate>Thu, 16 Apr 2009 14:48:00 +0000</pubDate>
				<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Google analytics]]></category>
		<category><![CDATA[Google referral]]></category>
		<category><![CDATA[Web analytics]]></category>
		<category><![CDATA[click tracking]]></category>
		<guid isPermaLink="false">http://digitalsrc.com/blog/change-in-google-referral-strings-another-attempt-to-push-google-analytics/</guid>

					<description><![CDATA[<p>Google has again made a change to their search result page URLs that is likely to create trouble with most other web analytics package besides Google Analytics. A few days back they experimented with their SERP URLs by using AJAX and putting the URL parameters after a #. While that experiment had the potential to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/change-in-google-referral-strings-another-attempt-to-push-google-analytics/">Change in Google Referral Strings &#8211; Another Attempt to Push Google Analytics ?</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Google has again made a change to their search result page URLs that is likely to create trouble with most other web analytics package besides Google Analytics. A few days back they experimented with their SERP URLs by using AJAX and putting the URL parameters after a #. While that experiment had the potential to kill all the existing web analytics package in the market and created a big buzz in the blogosphere, they seem to have stopped that.</p>
<p>Now in their new experiment with the Google Search result URLs, they have done some changes which again would leave most other web analytics package high and dry to track Google referrer data.</p>
<p>At present a typical Google search referrer URL would look like<br />
http://www.google.com/search?hl=en&#038;q=candles&#038;btnG=Google+Search</p>
<p>The New Referrer URL format would be<br />
http://www.google.com/url?sa=t&#038;source=web&#038;ct=res&#038;cd=7&#038;url=http%3A%2F%2Fwww.example.com%2Fmypage.htm&#038;ei=0SjdSa-1N5O8M_qW8dQN&#038;rct=j&#038;q=candles&#038;usg=AFQjCNHJXSUh7Vw7oubPaO3tZOzz-F-u_w&#038;sig2=X8uCFh6IoPtnwmvGMULQfw</p>
<p>Now besides showing the complete result page URL and other multiple parameters, the key difference between these two referrer strings is that in the first on the parameters started after &#8220;/search?&#8221; and in the second one they start after &#8220;/url?&#8221;. <span id="more-75"></span>Now most of the present day analytics packages parses the Google referrer string based on the &#8220;/search?&#8221; part and looks for information after that to figure out which keyword or which page of the search result the traffic came from. Also most of them look for the &#8220;/search?&#8221; to determine if a visitor is coming from organic search results. Replacing &#8220;search&#8221; with &#8220;url&#8221; would leave them all messed up.</p>
<p>Google analytics however does not depend on the &#8220;/search?&#8221; string in the referrer and would continue to work properly. Also the latest version of Urchin (6.5) would not be affected by this change.</p>
<p>Other analytics packages would probably need to do some changes to adapt to this change in Google referrer string to provide accurate analytics report.</p>
<p>These new referrer String is launched at beta stage and only a small percentage of users are getting this at present but it is likely that Google would soon roll out this in the main stream.</p>
<p>While Google has not explained or given any reason for this sudden changes there seems to be just two possible reasons for this.<br />
a) Making other third party analytics less usable / giving them a hard time &#8211; I don&#8217;t think other analytics providers would have a lot of problem to adapt this but they would definitely need some time and webmasters would need an option for that period and Google Analytics would be the choice.</p>
<p>b) This new referrer string would allow Google to pass all clicks through their server thereby making it much easier for them to track the CTR for individual sites. As it has always been said that Google uses CTR data as a factor for their algorithm, now that Google can track individual CTR with so much precision I would think that they are very likely going to use these information for further refining the organic results.</p>
<p><span>Related Post:<br />
<a href="http://digitalsrc.com/blog/google-planning-ajax-interface-dooms-day-for-analytics/"><span>Google Planning AJAX Interface &#8211; Doom&#8217;s Day for Analytics</span></a><br />
<a href="http://analytics.blogspot.com/2009/04/upcoming-change-to-googlecom-search.html" rel="nofollow"><span>Google Analytics Blog Post</span></a></span></p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/change-in-google-referral-strings-another-attempt-to-push-google-analytics/">Change in Google Referral Strings &#8211; Another Attempt to Push Google Analytics ?</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://digitalsrc.com/blog/change-in-google-referral-strings-another-attempt-to-push-google-analytics/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>How to Imporve Adwords Campaign with Analytics</title>
		<link>https://digitalsrc.com/blog/how-to-imporve-adwords-campaign-with-analytics/</link>
					<comments>https://digitalsrc.com/blog/how-to-imporve-adwords-campaign-with-analytics/#comments</comments>
		
		<dc:creator><![CDATA[digitalSRC]]></dc:creator>
		<pubDate>Sun, 15 Mar 2009 18:00:00 +0000</pubDate>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Google analytics]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[bounce rate]]></category>
		<category><![CDATA[conversion rate]]></category>
		<guid isPermaLink="false">http://digitalsrc.com/blog/how-to-imporve-adwords-campaign-with-analytics/</guid>

					<description><![CDATA[<p>For most businesses and clients who run an Adwords campaign one of the key parameters based on which they tend to judge the success of the campaign is clicks or number of visitors. I often get clients who would ask me if we commit a monthly budget of $xxxx how many visitors can you send [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/how-to-imporve-adwords-campaign-with-analytics/">How to Imporve Adwords Campaign with Analytics</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>For most businesses and clients who run an Adwords campaign one of the key parameters based on which they tend to judge the success of the campaign is clicks or number of visitors. I often get clients who would ask me if we commit a monthly budget of $xxxx how many visitors can you send us. In this case we are actually missing the proper picture of the campaign and we would probably fail completely in analyzing the success of an Adwords campaign if our focus remains completely on visitors.</p>
<p>As an Internet marketing consultant I feel that it is my duty to educate my clients where necessary and this is one of the key areas that I often spend hours explaining to them. To properly measure the success of an Adwords campaign we need to track much more than just visitors to the site.</p>
<p>Google Analytics makes it a breeze to get all the necessary data and here are few parameters that I feel we should always track in a Adwords campaign ( any paid search campaign, for that matter)</p>
<p><span id="more-86"></span></p>
<ul>
<li>Clicks &#8211; Yes, I never said don&#8217;t track clicks. This is a basic information that most Adwords advertisers or clients would be interested in .</li>
<li>CTR &#8211; Click Through Rate is another important factor, it would definitely show the rate of response to your ads. A low CTR tells you that its time to check your ad copies ( also might be due to low average position)</li>
<li>Bounce Rate &#8211; As an Adwords consultant I feel this is one of the key factors that people should track but often doesn&#8217;t. Your campaign might have a high CTR, and get good number of visitors but what if 90% of your visitors leave the website just after arriving on the landing page. Does that do any good to you ? It basically consumes a lot of your budget, shows a lot of traffic to your website but doesn&#8217;t get you any or very minimal conversion. It is important that we track the bounce rate on a regular basis at a Keyword level and try to keep it as low as possible.Typically when you see high bounce rate for a keyword, check your landing page. It is often seen that if the landing page doesn&#8217;t match the keywords or doesn&#8217;t talk in same lines as your ad copy your visitors would bounce off pretty fast.</li>
<li>Conversion &amp; Conversion Rate &#8211; Goes without saying that almost all Adwords advertisers would track their goal conversion and the conversion rate. If you have a lot of keywords in broad match and you see conversions coming from some of the long tailed keywords initiated by the Broad match terms, try to detect them through your Google Analytics, pick them up separately and put them in a separate Ad group on Exact Match. This will ensure that these keywords get their fair share of budget and you are likely to see an imediate boost in your campaign.</li>
<li>Call To Action Tagging &#8211; Though not really a part of analytics tagging your call to action links gets you extremely important analytical data. It tells you a lot about your landing page, which call to actions are working for you and which are not. Adwords has got an inbuilt tool for tagging links which can come very handy for this purpose, however, if you are tagging a link make sure to test the link after you add it to your website. It is often seen that due to improper tagging some of your key links stops functioning.</li>
<li>Also you can look at the average time spent on site by visitors, number of pages visited etc at a keyword and ad group level to judge the quality of traffic your Adwords campaign is sending to your website. For these you would however need to use the Custom Reports feature in Google Analytics.</li>
</ul>
<p>CPC or Cost per Click is again an important parameter to be measured , however, as it is a very common and relatively simple parameter that is measured by almost everyone I have not gone into the details of it.</p>
<p>What do you guys measure for your Adwords accounts or what other parameters do you think is important to measure for an Adwords campaign ?</p>
<p>Recommended Resource: <a href="http://www.semrush.com/sem.html?ref=638936529">Discover your competitors Adwords keywords, ads, budgets and more</a><br />
Related Article: <a href="http://digitalsrc.com/blog/how-to-improve-your-google-adwords-quality-score/">How to Improve Your Google Adwords Quality Score</a><br />
<!-- Google Code for Remarketing Tag --><br />
<!--------------------------------------------------
Remarketing tags may not be associated with personally identifiable information or placed on pages related to sensitive categories. See more information and instructions on how to setup the tag on: http://google.com/ads/remarketingsetup
---------------------------------------------------><br />
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 965061393;
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
/* ]]&gt; */
</script><br />
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script><br />
<noscript></p>
<div style="display:inline;">
<img loading="lazy" height="1" width="1" style="border-style:none;" alt="" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/965061393/?value=0&amp;guid=ON&amp;script=0"/>
</div>
<p></noscript></p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/how-to-imporve-adwords-campaign-with-analytics/">How to Imporve Adwords Campaign with Analytics</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://digitalsrc.com/blog/how-to-imporve-adwords-campaign-with-analytics/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Google Planning AJAX Interface &#8211; Doom&#8217;s Day for Analytics</title>
		<link>https://digitalsrc.com/blog/google-planning-ajax-interface-dooms-day-for-analytics/</link>
					<comments>https://digitalsrc.com/blog/google-planning-ajax-interface-dooms-day-for-analytics/#comments</comments>
		
		<dc:creator><![CDATA[digitalSRC]]></dc:creator>
		<pubDate>Wed, 04 Feb 2009 07:34:00 +0000</pubDate>
				<category><![CDATA[Google analytics]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Web analytics]]></category>
		<guid isPermaLink="false">http://digitalsrc.com/blog/google-planning-ajax-interface-dooms-day-for-analytics/</guid>

					<description><![CDATA[<p>Google has been offering AJAX based results through API for a long time now but recently it has been observed that in some countries Google has rolled out its AJAX based interface in main Google search as well. While this is still used selectively only in certain regions it can very well be the way [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/google-planning-ajax-interface-dooms-day-for-analytics/">Google Planning AJAX Interface &#8211; Doom&#8217;s Day for Analytics</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Google has been offering AJAX based results through API for a long time now but recently it has been observed that in some countries Google has rolled out its AJAX based interface in main Google search as well. While this is still used selectively only in certain regions it can very well be the way Google decides to work in future.</p>
<p>The main difference between the traditional Google search engine result pages and the new AJAX based pages is in the URL structure. A normal Google page looks like</p>
<blockquote><p>http://www.google.co.in/search?hl=en&amp;q=google+ajax&amp;btnG=Google+Search&amp;meta=</p></blockquote>
<p>The AJAX version would look like..</p>
<blockquote><p>http://www.google.com/#hl=en&amp;q=google+ajax&amp;btnG=Google+Search&amp;aq=f&amp;oq=google+ajax&amp;fp=0k_STq_SEOg</p></blockquote>
<p>Now what is the big difference between these two ?<br />
<span>Note the “#” in the second URL.</span> On any Google query the URL string carries the query value under the “q” parameter and we can easily understand the keyword ( and at times other information as well) by looking at “?hl=en&amp;q=google+ajax&amp;btnG=Google+Search&amp;meta=” part. In the new URL the query part is placed after the #.<br />
<span id="more-99"></span><br />
All the web analytics packages that are used today, may it be a server based log analyzer or a JavaScript based analytics package; they work by parsing the data passed by browsers through the URL. So a traditional Google search URL could have been easily parsed to understand what was the keyword searched for, the language, the page in which the result was displayed and similar data. However, with this new URL structure, browsers would not be able to pass the value displayed after the” #” mark, as a result all your Google referrals would show up as just Google.com and there would be no way for your analytics package to tell you which keyword sent you the visitor and what was the keyword position in search results page.</p>
<p>It is probably not a small tweak in the JavaScript that would allow the analytics to track this data and the possibilities are that if Google decides to roll this out as a regular feature globally it would actually mean the end of all the existing analytics packages. Even Google analytics is not able to handle these URLs at present and shows the referrers as Google.com/referrer. However, it is a possibility that Google might do necessary modification to Google Analytics to track such AJAX based results before they role out the new feature globally. In such case it would spell the doom for all the existing analytics package and would actually create a virtual monopoly for Google analytics.</p>
<p>What are your thoughts on this?</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/google-planning-ajax-interface-dooms-day-for-analytics/">Google Planning AJAX Interface &#8211; Doom&#8217;s Day for Analytics</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://digitalsrc.com/blog/google-planning-ajax-interface-dooms-day-for-analytics/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Measuring Impact of Online Marketing on Offline Presence</title>
		<link>https://digitalsrc.com/blog/measuring-impact-of-online-marketing-on-offline-presence/</link>
					<comments>https://digitalsrc.com/blog/measuring-impact-of-online-marketing-on-offline-presence/#comments</comments>
		
		<dc:creator><![CDATA[digitalSRC]]></dc:creator>
		<pubDate>Sun, 28 Dec 2008 07:41:00 +0000</pubDate>
				<category><![CDATA[Google analytics]]></category>
		<category><![CDATA[conversions]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[online marketing]]></category>
		<guid isPermaLink="false">http://digitalsrc.com/blog/measuring-impact-of-online-marketing-on-offline-presence/</guid>

					<description><![CDATA[<p>Many of us who are into online marketing industry often deal with clients who have both online and offline presence and while we can easily measure the online impact of our marketing activities through any web analytics package and some bit of data crunching, we tend to neglect the importance of measuring the impact our [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/measuring-impact-of-online-marketing-on-offline-presence/">Measuring Impact of Online Marketing on Offline Presence</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Many of us who are into online marketing industry often deal with clients who have both online and offline presence and while we can easily measure the online impact of our marketing activities through any web analytics package and some bit of data crunching, we tend to neglect the importance of measuring the impact our online activities cause to the offline conversions of our clients. However, we do agree that it is important and it would be just so much more impressive to tell our clients that you got 100 sales through the website and another additional 30 sales on your store for the money you invested in online marketing rather than just the sales on your website.</p>
<p>Not just conversions, visitors to a website also adds other value than just conversions. If your online marketing gets 10 visitors to an website 2 of them might buy the product, 4 of them would probably bounce back &#8211; what happens to the remaining 4 ? In most cases this 4 visistors also derive some value from the website ( getting product info, getting the tech support phone number, having a better brand perception etc ) which might reflect in their offline activities ( buying the product from a store, calling the call center for support, investing in the company etc). Now are we measuring this ?</p>
<p><span id="more-109"></span></p>
<p>While most clients and marketers do understand that the online marketing activities actually impact offline presence it is also true that its a big challenge to map the online marketing activities to offline impact. To map the online activities to the offline conversions we will basically need to have a common factor ( technically referred to as the Primary Key) that helps us to identify a part of the offline conversions to have been generated through online channels. To elucidate the fact, let&#8217;s look at the following tables&#8230;</p>
<p><a href="http://3.bp.blogspot.com/_8G0wbEsC5tA/SVcrJlfT6RI/AAAAAAAAALk/AKcl4nx_sls/s1600-h/conversion-data.jpg"><img alt="" src="http://3.bp.blogspot.com/_8G0wbEsC5tA/SVcrJlfT6RI/AAAAAAAAALk/AKcl4nx_sls/s320/conversion-data.jpg" border="0" /></a>Typically, this is the data that we see from online and offline sources. Now from the data above there is no way to identify if any of the guys who inquired online actually bought the products offline because there is no common factor through which we can identify the users.</p>
<p>Now let&#8217;s think, when your visitors go to your website you give an unique ID to each of them and the users are nice enough to come to your store and declare their id when they make a purchase. Then the above data would look like..</p>
<p><a href="http://2.bp.blogspot.com/_8G0wbEsC5tA/SVcuOCkMImI/AAAAAAAAALs/iez06Nn1d78/s1600-h/Integrated-conversion-data.jpg"><img alt="" src="http://2.bp.blogspot.com/_8G0wbEsC5tA/SVcuOCkMImI/AAAAAAAAALs/iez06Nn1d78/s320/Integrated-conversion-data.jpg" border="0" /></a>Based on the unique ID that was assigned on the website now we are able to integrate both the online and offline data and get a much broader picture. However, in real life this unique id is missing. Any unique id that is assigned to online users is applicable only for online and the consumers don&#8217;t care to know or share those when they shop offline. The websites also cannot collect any other Personally identifiable information that can be used to map the online and offline activities together.</p>
<p><strong>So how can we integrate the online and offline data ?</strong></p>
<p><span>Solutions</span></p>
<p>It is difficult to quantify and integrate online and offline data however it is not completely impossible and to some extent offline impact of online marketing activities can definitely be measured.</p>
<p><strong>a) Unique Toll Free Number on the Website </strong><br />
Provide a unique toll free number on your website and let your customers call on that. Every time you receive a call on that number you know its a lead sent through the website. This is extremely effective for various websites, may it be e-commerce, tech support of lead generation.</p>
<p>For an advanced level of tracking for your PPC campaigns, you can easily use separate phone numbers for separate landing pages. Now if you set up your PPC campaign in a bit systematic way its very easy to track your offline conversions and map them to your adroups / keyword level data. If you are a big spender on Adwords or Adcenter, this is a very small cost that is well worth the valuable information that you would get out of it.</p>
<p>The latest thing in this context is the service offered by <a href="http://www.mongoosemetrics.com/" target="_blank" rel="nofollow">Mongoose Metrics</a>. They can integrate your phone systems in a way that every time someone calls the number it would ping your website and the phone call data shows up on your analytics tool. With this you can have all the data ( web analytics and offline leads generated through online marketing) directly in your WebTrends, Core Metrics or Google Analytics.</p>
<p><strong>b)Use Unique Coupons, Promotions Online</strong><br />
Now here you are motivating your offline store visitors to declare if they have visited your website. Put up a unique coupon or a special promotional offer online and tracking the redemptions of these coupons or promotional offers in your offline store gives you a good indication of the sales / lead driven by your online marketing efforts.</p>
<p>This same technique when used with Email marketing ( sending the promotional offer or discount coupon through emails) can give you some more insights . In most cases for email lists you already have some infomation in terms of geographic location and other demographic information about the customers. Providing them with single use coupons and then tracking there redemption patterns can actually provide a good understanding of your consumer behaviour and preferences.</p>
<p><strong>c) Track Your Online Store Locators</strong><br />
A visitor viewing the online store locator page shows a clear intent of knowing your offline presence. A little effort to integrate your online store locator to configure the store locator search parameter in your internal site search give you far more information &#8211; visitors from which geographic regions are more inclined to visit the stores.</p>
<p>Using Maps and Directions are very common today and it is indeed a fantastic feature to have along with your store addresses in the store locators. Now a person visiting the Maps and Directions page clearly has a much stronger intent of visiting the store. Also if you have more than one store in particular region and by tracking the maps and directions page you will have an idea on which stores are more likely to be visited by the website viewers. This helps you understand the amount of contribution your online marketing has in the sales generated in the stores in various locations.</p>
<p><strong>d) Ask Them!</strong><br />
Trust me this works ! the simplest way to do it is to ask your visitors how likely they are to visit the stores. A small unobtrusive exit survey with few basic questions and asking them if they are likely to visit a store and the likeliness of making an offline purchase would probably give you some good data to show your client.</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/measuring-impact-of-online-marketing-on-offline-presence/">Measuring Impact of Online Marketing on Offline Presence</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://digitalsrc.com/blog/measuring-impact-of-online-marketing-on-offline-presence/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Ultimate Guide to Google Analytics Setup &#038; Ecommerce Tracking</title>
		<link>https://digitalsrc.com/blog/ultimate-guide-to-google-analytics-setup-ecommerce-tracking/</link>
					<comments>https://digitalsrc.com/blog/ultimate-guide-to-google-analytics-setup-ecommerce-tracking/#comments</comments>
		
		<dc:creator><![CDATA[digitalSRC]]></dc:creator>
		<pubDate>Thu, 12 Apr 2007 13:39:00 +0000</pubDate>
				<category><![CDATA[Google analytics]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[click tracking]]></category>
		<category><![CDATA[ecommerce tracking]]></category>
		<category><![CDATA[implementation]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[web stats]]></category>
		<guid isPermaLink="false">http://digitalsrc.com/blog/ultimate-guide-to-google-analytics-setup-ecommerce-tracking/</guid>

					<description><![CDATA[<p>a) What can Google Analytics do? Helps to track and generate detailed report on web site traffic, referral sources, search engines, referring keywords, duration of visit, entry and exit points and various other information that helps to analyze a website’s performance and take decisions for improvement. E-commerce and ROI tracking – Google analytics can track [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/ultimate-guide-to-google-analytics-setup-ecommerce-tracking/">Ultimate Guide to Google Analytics Setup &amp; Ecommerce Tracking</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span><strong>a) What can Google Analytics do?</strong></span></p>
<p></p>
<ul>
</p>
<li>Helps to track and generate detailed report on web site traffic, referral sources, search engines, referring keywords, duration of visit, entry and exit points and various other information that helps to analyze a website’s performance and take decisions for improvement. </li>
<p></p>
<li>E-commerce and ROI tracking – Google analytics can track visitor foot prints to generate reports on whether they are following the desired path of action, if there are specific points on the website where the visitors drop, it tracks advertisement campaigns and the traffic driven by each of them, it tracks sales and attributes them to their respective traffic source, equates the expenses for traffic acquisition and sales generated to calculate ROI.</li>
</ul>
<p><span><strong>b) How to Implement Google Analytics? (Just to track traffic details)</strong></span></p>
<ul>
<li>Sign Up for a Google Analytics Account or if you already have a Google account you can use that to log in to Google Analytics at http://www.google.com/analytics and then sign up for Analytics using the “Sign Up” button.
</li>
<li>The sign up process would take ask for your website URL and other necessary info and you can move through the process by clicking on the “continue” button. </li>
<p></p>
<li>On the final step, you will be provided with a small piece of JavaScript that you will need to add to each page that you wish to track just before the tag. You can add this code as a Server Side Include or simply write it in your code.
<p><strong>Example Code:</strong></p>
<p><span><strong><span><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"><br /></script><br /><script type="text/javascript"><br />_uacct="UA-xxxx-x";<br />urchinTracker();<br /></script></span><br /></strong></span><br />The &#8220;xxxx-x&#8221; needs to be replaced by the Analytics account number for your website.
</li>
<li>Once you have added this JavaScript to all your web pages click the &#8220;Check Status&#8221; button to ensure that the tracking code has been set properly.</li>
</ul>
<p><span><strong>c) How to set up Conversion goals for Google Analytics?</strong></span> </p>
<ul>
<li>Log in to Analytics Account </li>
<p></p>
<li>Click on &#8220;Edit&#8221; option for &#8220;Settings&#8221; for the website for which you want to add the conversion Goals. </li>
<p></p>
<li>Google Analytics allows you to set up to four Conversion Goals. Against each of the Goals click on the &#8220;Edit&#8221; option on &#8220;Settings&#8221; tab
</li>
<li>Enter the URL of your web page that you set as a Goal in the Goal URL field, add a name to the goal for ease of identification.
</li>
<li>Click the radio button below to activate/deactivate the goal (by default it is active)
</li>
<li>Set up a Funnel for your goal from the &#8220;Define Funnel&#8221; section (optional – explained in point below)
</li>
<li>Set up a Goal Value from the &#8220;Additional Settings&#8221; section. (Optional)
</li>
</ul>
<p><strong>d) How to set up a Funnel for Goals? </strong></p>
<ul>
<li>You can lay down the expected path that a visitor would follow to reach the goal. This funnels help to identify if there is a glitch or an usability issue at any point in your website that is preventing the visitors to reach the goal.</li>
<ul></ul>
<li>Get to the Goal Settings page (Click &#8220;Edit&#8221; on settings tab for respective Goals)</li>
<ul></ul>
<li>Under the section &#8220;Define Funnel Option&#8221;, put in the URLs that you expect your visitors to follow to reach that specific Goal.</li>
<ul></ul>
<li>For Example – If you have set up your order Form Page as a Goal. You can set up a Funnel for the Goals as Home Page > Product Page > Order Form (Goal)</li>
</ul>
<p><strong>e) Why and how do you set up a Goal value? </strong></p>
<ul>
<li>A Goal value needs to be set up if you need to measure the ROI for your marketing campaign. The Analytics program uses this Goal value to equate against the cost of traffic acquisition to calculate the ROI.</li>
<ul></ul>
<li>Under the &#8220;Additional Settings&#8221; section on the Goal Settings page you can insert a Goal value for each of the goals.</li>
<ul></ul>
<li>This option allows you to add a fixed amount as the Goal value and is effective only when all your sales are of the exact same value, else, it just provides an approx estimation of the value that you earn when a visitor reaches the Goal. For better tracking and calculation of ROI for E-Commerce websites, E-commerce tracking needs to be set up.</li>
</ul>
<p><strong>f) How to set up Google Analytics for E Commerce? </strong></p>
<ul>
<li>Do <strong>NOT</strong> insert any Goal value for your goals on the Goal Settings page.
</li>
<ul></ul>
<li>To enable e-commerce tracking you will need to indicate your website as an e-commerce website by clicking on the radio button for e-commerce website in Site profile. You can do this by clicking on &#8220;Edit&#8221; next to the site profile for which you would like to enable e-commerce.</li>
<ul></ul>
<li>Insert the tracking code in the receipt page in the standard fashion (explained in point (b) above.</li>
<ul></ul>
<li>Somewhere below the tracking code you will need to insert the code for e-commerce tracking, which is as follows
<p><span><strong><span></p>
<form style="display:none;" name="utmform"><textarea id="utmtrans"><br />UTM:T[order-id][affiliation] [total][tax] [shipping][city][state][country]UTM:I[order-id][sku/code][productname][category][price] [quantity]</textarea><br /></form>
<p></span><br /></strong></span><br />Everything that are within the [] has to be replaced by actual values by your engine. A reference to the Parameters used in the above code can be found at <a href="https://www.google.com/support/analytics/bin/answer.py?answer=27203">https://www.google.com/support/analytics/bin/answer.py?answer=27203</a></p>
<p>The final output would actually look something similar to</p>
<p><span>UTM:T34535Main Store111108.068467.0610.00San DiegoCAUSA<br />UTM:I34535XF-1024Urchin T-ShirtShirts11399.009<br />UTM:I34535CU-3424Urchin Drink HolderAccessories20.002</span></p>
<p>For every transaction there will be one Transaction line that is indicated by the “T” after UTM – this line contains the total for the transaction including taxes and other information. The lines with an “I” after the UTM is the Item line and this contain the details of the items, their price and other details. There can be unlimited number of item lines for any transaction. An Item line is generated for each of the items that are processed during the transaction.</p>
<p><strong>Note:</strong> The square brackets should not be included while setting the values for the form. Also, do not use comma to separate thousand figures for any digit, any digit after comma would be dropped.</li>
<p></p>
<ul></ul>
<li>The final step is to call the function “utmSetTrans” when the form gets submitted. This is important to record the e-commerce information. This can be done in two ways.
<p>You can call the function on Body OnLoad as shown below</p>
<p><span><strong><span><body onload="javascript:__utmSetTrans()"></span><br /></strong></span><br />If you do not have access to the body tag then you can call it within a separate Script tag. You need to ENSURE that the function is called AFTER the form.</p>
<p><span><strong><script type="text/javascript"><br />__utmSetTrans();<br /></script></strong></span> </li>
</ul>
<p><strong>g) How to use Google Analytics to track my Google Adwords Data?</strong></p>
<ul>
<li>Log into your Google Adwords account</li>
<ul></ul>
<li>Click on the &#8220;Analytics&#8221; tab</li>
<ul></ul>
<li>Click on the link &#8220;I already have a Google Analytics Account&#8221;</li>
<ul></ul>
<li>If you are using the same Google Account ID for your Adwords and Analytics you will see the Analytics account in the dropdown. Select the analytics account profile.</li>
<ul></ul>
<li>&#8220;Destination URL auto tagging&#8221; will remain check by default, you should leave it checked.</li>
<ul></ul>
<li>Also keep the &#8220;Apply cost Data&#8221; option checked (checked by default).</li>
<ul></ul>
<li>Click on Link Account.
</li>
</ul>
<p><strong>h) How to use Google Analytics to track Ad Campaigns other than Adwords?<br /></strong><br />To ensure that you are able to track non-Adwords advertisement campaigns through Google Analytics you will need to tag the destination URL for those campaigns with suitable parameters so that Google Analytics can easily differentiate between each campaign and pick up the necessary information.</p>
<p>Google provides an extremely helpful URL builder that would relieve you from adding the tags manually. You don’t need to use all six fields in the URL builder to tag your campaigns, just use the ones that are necessary. You&#8217;ll usually only need to use Source, Medium, Name, and Term (for paid keywords). </p>
<p><strong>Alert:</strong> A small percentage of websites do not allow arbitrary URL parameters and serve an error page when auto-tagging is turned on. Please consult with your Webmaster to find out if this is the case or turn on auto-tagging and do a test by simply clicking on your ad. If the link to your site works then you can use auto-tagging. If you are getting an error, you&#8217;ll need to turn auto-tagging off from your AdWords account. Then, ask your Webmaster to allow arbitrary URL parameters before turning it back on.</p>
<p><strong>Reference:</strong> <a href="http://www.google.com/support/analytics/?hl=en_US">http://www.google.com/support/analytics/?hl=en_US</a></p>
<div>Read more on SEO at <a href="http://seo-kolkata.blogspot.com/">SEO Consultant India Blog</a>
</div>
<p>The post <a rel="nofollow" href="https://digitalsrc.com/blog/ultimate-guide-to-google-analytics-setup-ecommerce-tracking/">Ultimate Guide to Google Analytics Setup &amp; Ecommerce Tracking</a> appeared first on <a rel="nofollow" href="https://digitalsrc.com/blog">Adwords Consultant India : DigitalSRC</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://digitalsrc.com/blog/ultimate-guide-to-google-analytics-setup-ecommerce-tracking/feed/</wfw:commentRss>
			<slash:comments>13</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 11/195 objects using disk
Page Caching using disk: enhanced 
Minified using disk
Database Caching 10/51 queries in 0.011 seconds using disk

Served from: digitalsrc.com @ 2026-04-26 19:21:54 by W3 Total Cache
-->