vote up 0 vote down star

I will collect here information on the topic because the material on the web is so splittered. On the way, I will stress some hard points and some questions will emerge.

ga.js

<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-0000000-00");
pageTracker._trackPageview();
} catch(err) {}</script>

Google CSE iFrame code recommended by [6]

First part:

<form action="" id="cse-search-box">
  <div>
    <input type="hidden" name="cx" value="000000000000000000479:6hceebmys3e" />
    <input type="hidden" name="cof" value="FORID:10" />
    <input type="hidden" name="ie" value="UTF-8" />
    <input type="text" name="q" size="31" />
    <input type="submit" name="sa" value="Search" />
  </div>
</form>

<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script>

Second part:

<div id="cse-search-results"></div>
<script type="text/javascript">
  var googleSearchIframeName = "cse-search-results";
  var googleSearchFormName = "cse-search-box";
  var googleSearchFrameWidth = 600;
  var googleSearchDomain = "www.google.com";
  var googleSearchPath = "/cse";
</script>
<script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script>

Citations from the articles

The trick is to feed the search terms to GA directly, rather than through the URL. This is done by including the search terms in the GA _trackPageview function which is part of the GA javascript code you include in each of your pages you wish GA to track [2]

Things about the use of iFrame:

In order for site search data to be processed by Google Analytics, you need to bring them back to your site. So in your CSE control panel, under Code, make sure you selelct the iframe option and follow the instructions provided (which, as usual, just involves copying and pasting a little bit of JavaScript.) [6]

Relevant articles

  1. Event tracking in Google Analytcis

  2. Some instructions in PHP about Google Analytics

  3. Metrics and dimensions in Google Analytics
  4. _addIgnoredOrganic(): method covering search terms
  5. Examples
  6. Seems VERY useful!
  7. An article on Google about implementing CSE to Analytics
  8. Article about the _trackPageview -function

The modified ga.js [2]

<{if ereg("Search Query", $sectiontitle)}>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-xxxxxxx-x");
pageTracker._initData();
 pageTracker._trackPageview("<{$sectiontitle}>");
</script>

 <{else}>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-xxxxxxx-x");
pageTracker._initData();
 pageTracker._trackPageview();
</script>
 <{/if}>

What do I know?

I need to use iFrames according to [6] and [7]. I need to use _trackPageview [8].

Questions

I. There are two different methods [2] and [6]. The former is in PHP, while the latter uses iFrame. So the former needs some coding to your backend server. What about the latter? Which one is better?

II. The article [6] asks you to have iframe in GCSE. How does it work?

I will add more articles and things to the question, when they emerge in replies.

flag

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.