Articles in The 'organic' Tag


May 10 2010

I Want To Be #1 in Google (organically)

by Marni Weinberg

So you want to be #1 in Google, huh? Of course you do and you’re not alone, so does everybody else!

Unfortunately, ranking #1 organically (let alone in the top 10) in any search engine is not an easy task to accomplish, though not impossible either. You will need a solid action plan, a knowledgeable and reputable team well versed in Search Engine Optimization (SEO) and an enormous amount of patience. Unlike paid search efforts, where you can receive almost instant gratification (barring the nuances of quality scores, expensive bid prices, etc.) from “buying” real estate in the sponsored results section, organic results do not occur overnight. It is best to be seen in both the organic results, as well as the paid.

See example of Nike in AdWords screenshot below. Notice that Nike.com is appearing #1 organically, as well as paying to be in the sponsored section. This reinforces their brand and provides the opportunity to take up more real estate on the page. Surprisingly many searchers do not understand or recognize the difference between a paid listing and an organic one. Nike is very smart to cover all the bases by ensuring that they are being seen in both places.

Nike in AdWords

Sure, there is methodology that can be utilized to “trick” or “fool” Google into thinking that your site should rank higher than it actually should. In addition, there are a slew of non reputable companies that will offer empty promises and make all sorts of guarantees that sound way too good to be true. At the risk of sounding cliché, if it sounds too good to be true, it probably is. We strongly advise against employing any black hat tactics; you run the high risk of getting penalized or ultimately having your site completely banned from the SERPS.

Don’t take shortcuts, no matter how appealing they may seem. If you take the time to optimize your site the right way, you will reap the benefits over time. There are a myriad of elements that must be factored into an effective, long term SEO Strategy. Employ a credible and reputable SEO firm that will hold your hand and expertly guide you on your journey through the ever-changing algorithms set forth by the search engines.

June 2 2009

Need to add a new organic source in GA? Here’s how:

by MoreVisibility

Way back in August of last year, I blogged about the ga.js file and how it automatically recognized 38 different websites as organic search engines. Today, June 2, 2009, the ga.js file now automatically recognizes 40 websites, pending Microsoft’s new engine “Bing.com” being added very soon to be number 41.

The team at Google Analytics can’t possibly keep up with every single website that appears on the internet, and depending on your own needs, you may find it useful to count a new website as an organic source of traffic, instead of counting the incoming traffic as a referral.

Perhaps you’d like to count your favorite website as an organic search engine? Or maybe you’d like to add any brand new search engine that comes out, like WolframAlpha or Bing.com, and you’d like to immediately start counting the traffic you get from it in the same report as Google and Yahoo? By making a very minor addition to the Google Analytics Tracking Code on all of your website’s pages, you can add as many new organic sources of traffic as you wish.

Here’s what that tracking code would look like on your website:

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-XXXXXX-X");
pageTracker._addOrganic("bing.com", "q");
pageTracker._trackPageview();
} catch(err) {}</script>

The new line of code that you should see is the _addOrganic call:

pageTracker._addOrganic("bing.com", "q");

There are two parts to the _addOrganic call – the first part (where it says “bing.com”) is the search engine domain name. The second part (where it says “q”) is the query parameter that displays the search term in the URL of your browser’s address bar.

The domain name is easy to get – simply grab your favorite site’s URL, remove the “www” prefix, and you have a domain name! The query parameter part may be tricky, depending on how your favorite website works. For example, on Bing.com, a search for “guitar hero accessories” returns this URL:

http://www.bing.com/search?q=guitar+hero+accessories&go=&form=QBLH

See the “q” right before my search term, behind the = symbol? Entering in “q” in the _addOrganic function will tell Google Analytics to look for “?q=” and a search term after the = symbol, so that you can get search term information from your new organic source as well as having it counted as an organic search engine!

Just keep in mind that not every website will have easy to find query parameters like the one from Bing.com does, and some websites will use something other than the letter “q”. For example, AOL.com uses “query”, and they use a different structure than Bing.com:

http://search.aol.com/aol/search?s_it=comsearch40&query=xbox+360&do=Search

When using _addOrganic, make sure to update the Google Analytics Tracking Code on EVERY PAGE of your website – if a person lands on a page that doesn’t contain the _addOrganic function, their traffic source will be counted as “referral”, not “organic”, so it’s vital to update this on all of your website’s pages, not just your homepage.

Hope you found this useful! Next time I will talk about how to modify your Google Analytics Tracking Code to treat certain keywords or referring websites as “direct” traffic. Stay Tuned!

© 2023 MoreVisibility. All rights reserved.