<?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></title>
	<atom:link href="http://www.giantconcepts.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.giantconcepts.com</link>
	<description></description>
	<lastBuildDate>Wed, 29 Feb 2012 17:35:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Tracking Errors Can Help You Improve User Experience</title>
		<link>http://www.giantconcepts.com/tracking-errors-can-help-you-improve-user-experience/</link>
		<comments>http://www.giantconcepts.com/tracking-errors-can-help-you-improve-user-experience/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 17:35:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Analytics]]></category>
		<category><![CDATA[404 error tracking]]></category>
		<category><![CDATA[error tracking]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.giantconcepts.com/?p=1551</guid>
		<description><![CDATA[Visitor-tracking tools such as Google Analytics make it simple for you to check metrics like navigation patterns, conversions, and visits, but these metrics do not provide information showing when users come up against errors on your website. Tracking and optimizing &#8230;]]></description>
			<content:encoded><![CDATA[<p>Visitor-tracking tools such as Google Analytics make it simple for you to check metrics like navigation patterns, conversions, and visits, but these metrics do not provide information showing when users come up against errors on your website. Tracking and optimizing form-field and 404 error messages for drop rates can help to improve your website’s user experience.</p>
<p>Form-Field Errors</p>
<p>After a form-field’s validation runs, you are able to capture errors using Google Analytics, Omniture or Performable. Whenever an error message appears, whether it’s client-side or server-side, you can create an event in your visitor-tracking tool of choice to keep track of each time this occurs.</p>
<p>Often, visitors will hit stumbling blocks on forms where users are attempting to create new accounts, log into the site, or check out. If you find a form with high exit rates or possibly one that has high traffic but low uniques, you can tell that people were trying to come back to reuse the same page and that there may have been a problem when they did so. From here, you track an event each time the user encounters an error message:</p>
<blockquote><p>_trackEvent(category, action, opt_label, opt_value)</p></blockquote>
<p>For incorrect password submissions upon log in:</p>
<blockquote><p>&lt;script type=&#8217;text/javascript&#8217;&gt;<br />
_gaq.push(['_trackEvent', 'Error', 'Sign In', 'Incorrect Password']);<br />
&lt;/script&gt;</p></blockquote>
<p>If you store the error messages as variables, you can use event tracking to call the variable and you can change the variable’s text as time goes on and A/B test the different error message versions:</p>
<blockquote><p>&lt;?php<br />
 $message = &#8216;Incorrect password&#8217;;<br />
  if ($message) { ?&gt;<br />
  &lt;script type=&#8217;text/javascript&#8217;&gt;<br />
   _gaq.push(['_trackEvent', 'Error', 'Sign In', '&lt;?php echo $message ?&gt;']);<br />
  &lt;/script&gt;<br />
&lt;?php } ?&gt;</p></blockquote>
<p>If the user can get more than one error on the page at a time, you can store the messages within the same event tracker. You can concatenate them into the same variable you’re calling in the event tracker or you can use an array. When you see that users are skipping many fields in the same form, it could mean that the user is trying to see which of those fields are required. Using the same event to track multiple missing fields can tip you off if this is happening. But you might want to begin by tracking the events separately because you may need data from having tracked individual errors over time.</p>
<p>404 Error Tracking</p>
<p>Even if you already know the number of times your 404 page is viewed, you may not be aware of the referring URLs or the pages the users were trying to access. You can see both of these things by adding tracking codes to 404 pages:</p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
  _gaq.push(['_trackEvent', 'Error', '404', 'page: ' + document.location.pathname + document.location.search + ' ref: ' + document.referrer ]);<br />
&lt;/script&gt;</p></blockquote>
<p>Using Google Analytics to Track Errors</p>
<p>If you have tracking code set up, you can go into Google Analytics under Event Tracking (under Content) and you will find a list of your errors. By choosing the Categories link, you can sort by error types.</p>
<p>If you want these reports readily available on your dashboard, you can use the Add to Dashboard button. This is helpful with 404 errors because you then have a reference point for when new 404 errors come through as you log in.</p>
<p>You can use the Intelligence section to figure out if error messages are spiking by attaching an alert to a specific metric. You can set custom alerts which will email you when certain events exceed a certain level by a set percentage from the day or week before.</p>
<p>Analyzing Errors</p>
<p>Once you are aware of the times and places that error messages are occurring, you are able to figure out where your site’s common stumbling blocks happen and why. Knowing the types of problems your users encounter will help you make smart decisions about how to alter your site to make the UX flow better.</p>
<p>If your site has a traffic spike, you may want to look for groups of users who are getting certain types of error messages because there might be something unique about that segment of your user base. If you’re looking at traffic coming in with new visitors, these people are seeing your site fresh. They are unaware of the navigational flow or which fields in your forms you have set to required. If a visitor is returning, they might be more familiar with the layout and structure of your site and how to navigate it, so these people might not encounter error messages as much because they already know which parts of the site caused them to receive errors in the past.</p>
<p>You can set segments like new visitors and returning visitors in your error event listing so that you only see those you’re working with at that moment and it makes it easier to analyze that particular data set.</p>
<p>You can also use the filter event setting in the search bar in Google Analytics to check referring sources for 404 pages. This is helpful when you’re searching for errors on pages within your own website.</p>
<p>You ca then prioritize which errors need to be fixed right away. If you look at which errors are affecting the largest set of people, you can fix those first before moving on to errors that are only affecting a small portion of your users. After that, you can determine which are fixed most easily and work on those first to get them out of the way, making time for more involved error repair projects. After you’ve prioritized your first round of error repairs, you can track your errors for another week to see what is happening and then reprioritize again. If you’re seeing the top errors change from where they had been, you can fix those and move on to the errors affecting the next largest group of users.</p>
<p>Improving the design, layout, and text of your error messages when the user sees them can help to eliminate a lot of the problems associated with your users having repeat encounters with the same error message. If you make sure the message is clearly written and highly visible, you may drive down your repeat error alerts in your tracking. You can do this by A/B testing the messages you’re sending out to see which ones work best for the users and then measure each one’s effectiveness.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giantconcepts.com/tracking-errors-can-help-you-improve-user-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just How Much Weight Do Meta Descriptions Have in Regards to Organic Search Rankings?</title>
		<link>http://www.giantconcepts.com/just-how-much-weight-do-meta-descriptions-have-in-regards-to-organic-search-rankings/</link>
		<comments>http://www.giantconcepts.com/just-how-much-weight-do-meta-descriptions-have-in-regards-to-organic-search-rankings/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 21:31:29 +0000</pubDate>
		<dc:creator>Scott Averbach</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[meta data]]></category>
		<category><![CDATA[meta description]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[search ranking]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.giantconcepts.com/?p=1526</guid>
		<description><![CDATA[For those that don&#8217;t know, meta descriptions are a hidden part of each of your webpages. They play an important part in your search engine optimization strategy so much that you can see the results in the above picture what &#8230;]]></description>
			<content:encoded><![CDATA[<p>For those that don&#8217;t know, meta descriptions are a hidden part of each of your webpages. They play an important part in your search engine optimization strategy so much that you can see the results in the above picture what happened to the traffic when they were accidently removed and subsequently re-enabled:</p>
<p><img src="http://www.giantconcepts.com/wp-content/uploads/google-metadescription-optimization-300x175.png" alt="How Google Read Meta Descriptions" title="How Google Read Meta Descriptions" width="300" height="175" class="alignleft size-medium wp-image-1532" />In Google, when you search for a something, it will usually show part of the meta description below the website URL in search results. See the picture on the left to see what I&#8217;m talking about. The text that shows up is the text in the meta description for Giant Concepts.</p>
<p>By complete accident, I recently overwrote the default setting for the Meta Description on one of Giant Concepts websites. This careless mistake led to a dramatic drop in organic search traffic for this website. The website has over 2000+ pages indexed in Google, and all of them lost their Meta Description. I certainly don&#8217;t check that my Meta Descriptions are in place on a daily basis on all our websites, but I do periodically check my analytics to look at current trends on all the websites that we maintain. It took nearly two weeks for me to notice that this website had significant drop in organic search engine traffic (it actually only affected Google traffic, as Bing and Yahoo remained consistent). The graph not only shows how quickly and dramatically the traffic dropped but how fast it came back once it was re-implemented.</p>
<p><a href="http://www.giantconcepts.com/wp-content/uploads/meta-descrption-results-graph.png"><img src="http://www.giantconcepts.com/wp-content/uploads/meta-descrption-results-graph.png" alt="This is what happened when we accidently removed the meta description from one of our websites." title="The importance of Meta Descriptions for search engine optimization." width="615"  class="size-full wp-image-1527" /></a></p>
<p>If your website is not performing as you&#8217;d like it, try adjusting your Meta Descriptions. It is a reminder of how important properly worded Meta Descriptions can be for your overall search engine marketing strategy. Here are a few suggestions for properly worded Meta Descriptions, not a complete guide but enough to get you on your way:</p>
<ul>
<li>Meta Descriptions should be between 145 &#8211; 165 Characters.</li>
<li>Should NOT just be a bunch of keywords separated by commas.</li>
<li>If you are doing ecommerce, each of your products should have a different meta description.</li>
<li>Each unique page that is search relevant (non search relevant pages would be: contact forms, privacy policy, etc) should have a meta description.</li>
<li>If you have one or two specific keywords you are targeting, you might want to use those words 2 or 3 times in your meta description.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.giantconcepts.com/just-how-much-weight-do-meta-descriptions-have-in-regards-to-organic-search-rankings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scorned Ex-Girlfriend Uses SEO for Retribution, Spams Google Images with Captioned Headshots of Ex</title>
		<link>http://www.giantconcepts.com/ex-girlfriend-uses-seo-to-ruin-reputation/</link>
		<comments>http://www.giantconcepts.com/ex-girlfriend-uses-seo-to-ruin-reputation/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 22:18:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Reputation Management]]></category>
		<category><![CDATA[jack weppler]]></category>
		<category><![CDATA[reputation]]></category>
		<category><![CDATA[reputation managment]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.giantconcepts.com/?p=1424</guid>
		<description><![CDATA[Next time you anger your ex-girlfriend or ex-boyfriend, you might want to check first if your former love interest is an SEO genius &#8211; which makes us wonder what heinous dating crime Jack Weppler committed to deserve having his former &#8230;]]></description>
			<content:encoded><![CDATA[<p>Next time you anger your ex-girlfriend or ex-boyfriend, you might want to check first if your former love interest is an SEO genius &#8211; which makes us wonder what heinous dating crime Jack Weppler committed to deserve having his former girlfriend plaster his mug all over Google Images annotated with what the guy’s mother referred to in a removal plea to Google Webmaster Help as “slanderous, defamatory and pornographic captions.” </p>
<p>Despite the ex-boyfriend’s mommy’s complaints on her son’s behalf and the subsequent removal of these allegedly copyrighted photos from the offending host servers, the images held steadfast to Google’s index, refusing to budge. </p>
<p>Here’s the thing &#8211; even if the images seem to be gone from the sites to which they were posted, the pages are still returning 200 status codes instead of the “page not found” status necessary for removal from Google… which means they’re not going anywhere. </p>
<p>Might want to check that the lover you&#8217;ve scorned isn’t an evil memetic mastermind next time… unless you want to face a reputation management nightmare that could follow you the rest of your life.</p>
<p>When and if this happens to you or your employer, you might find yourself calling a <a href="http://www.giantconcepts.com">reputation management company</a> like us!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giantconcepts.com/ex-girlfriend-uses-seo-to-ruin-reputation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Presents Evidence that Bing Copies Google Search Results</title>
		<link>http://www.giantconcepts.com/google-presents-evidence-that-bing-copies-google-search-results/</link>
		<comments>http://www.giantconcepts.com/google-presents-evidence-that-bing-copies-google-search-results/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 15:21:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google searches]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[search results]]></category>
		<category><![CDATA[serps]]></category>

		<guid isPermaLink="false">http://www.giantconcepts.com/?p=1383</guid>
		<description><![CDATA[In a recent blog post, Google presented evidence that Microsoft Bing is simply copying search results from Google. While on the surface it does appear from the evidence that this is the case, it is actually a little bit more &#8230;]]></description>
			<content:encoded><![CDATA[<p>In a recent <a href="http://googleblog.blogspot.com/2011/02/microsofts-bing-uses-google-search.html">blog post</a>, Google presented evidence that Microsoft Bing is simply copying search results from Google. While on the surface it does appear from the evidence that this is the case, it is actually a little bit more complicated as Microsoft seems to be extracting the results based upon the actions of users of IE8 with suggested sites turned on and/or the Bing Toolbar.</p>
<p>Bing claims they are a decision engine, and they help their users make better decisions through their search. My question is this &#8211; is utilizing their users’ data to fill in the gaps in their own search engine stealing or simply improving upon their own search results by helping their users to find what they are looking for through utilization of the data that they collect?</p>
<p>How do you feel about Microsoft utilizing this tactic?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giantconcepts.com/google-presents-evidence-that-bing-copies-google-search-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>People Searching About Other People &#8211; Protecting Your Reputation</title>
		<link>http://www.giantconcepts.com/people-searching-about-people/</link>
		<comments>http://www.giantconcepts.com/people-searching-about-people/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 20:53:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Reputation Management]]></category>
		<category><![CDATA[online reputation]]></category>
		<category><![CDATA[online reputation management]]></category>
		<category><![CDATA[orm]]></category>
		<category><![CDATA[reputation management]]></category>

		<guid isPermaLink="false">http://www.giantconcepts.com/?p=1201</guid>
		<description><![CDATA[Have you ever typed someone's name into a search engine? How about a phone number? Did you know that in 2009, Pew Internet did a survey and found that 69% of the United States population with Internet access had searched for information about someone or a business. 
]]></description>
			<content:encoded><![CDATA[<p>Have you ever typed someone&#8217;s name into a search engine? How about a phone number? Did you know that in 2009, Pew Internet did a survey and found that 69% of the United States population with Internet access had searched for information about a person or a business?<br />
<span id="more-1201"></span></p>
<p>The Internet is a wonderful marketing tool, but because of people wanting instant gratification and the speed at which information <a href="http://www.giantconcepts.com/wp-content/uploads/what-people-search-reputation-management.jpg"><img src="http://www.giantconcepts.com/wp-content/uploads/what-people-search-reputation-management-273x300.jpg" alt="" title="People search about people - protect your reputation" width="273" height="300" class="alignleft size-medium wp-image-1207" /></a>spreads around the world rapidly populating search engine results, it can be just as good of a tool for anyone looking to give you or your company a bad reputation! The reality is that in the course of a normal day, people are talking about you, your products, and your company. Are the things they are saying ruining your chances at a job? A business deal? A new client? Increased sales? Perhaps a new boyfriend or girlfriend? &#8211; Search Reputation matters and it should matter to you.</p>
<p>Luckily, there are are two ways of handling this problem:<br clear="all"></p>
<p><strong>Reactive Reputation Management</strong></p>
<ul>
<li>Beg and plead with the person who wrote the content to remove it.</li>
<li>Threaten legal action against the responsible party and/or try to get Google or their hosting company to remove it (good luck with that).</li>
<li>Hope that the news doesn&#8217;t go viral, creating hundreds or thousands of negative references to your business.</li>
<li>Figure out how to get that nuisance website ranked lower for all those search terms.</li>
<li><em><a href="http://www.giantconcepts.com/contact/" title="Contact Giant Concepts"><b>Contact Giant Concepts</a></b> to learn more about Reactive <a href="http://www.giantconcepts.com/solutions/reputation-management/" title="Reputation Management">Reputation Management</a> services and what we can do for you.</em></li>
</ul>
<p><strong>Proactive Reputation Management</strong></p>
<ul>
<li>Control a good portion of the search engine real estate for your name, company or brand.</li>
<li>Populate and optimize content that helps control search engine rank of a term.</li>
<li>Control strategic domains ahead of time so that they can be deployed quickly.</li>
<li><em><a href="http://www.giantconcepts.com/contact/" title="Contact Giant Concepts"><b>Contact Giant Concepts</a></b> to learn more about Proactive <a href="http://www.giantconcepts.com/solutions/reputation-management/" title="Reputation Management">Reputation Management</a> services and what we can do for you.</em></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.giantconcepts.com/people-searching-about-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

