Difference between revisions of "Adding Google Analytics"

From Dreamwidth Notes
Jump to: navigation, search
(New page: == Needed == * A userprop for Google Analytics ID. == Code to add == <source lang="html4strict"><script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ...)
 
m (Pages to add it to)
 
(4 intermediate revisions by 2 users not shown)
Line 10: Line 10:
 
</script>
 
</script>
 
<script type="text/javascript">
 
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-<b>xxxxxx-x</b>");
+
var pageTracker = _gat._getTracker("UA-xxxxxx-x");
 
pageTracker._initData();
 
pageTracker._initData();
 
pageTracker._trackPageview();
 
pageTracker._trackPageview();
</script>
+
</script></source>
  
 
[https://www.google.com/support/googleanalytics/bin/answer.py?answer=55603 Finding the tracking code]
 
[https://www.google.com/support/googleanalytics/bin/answer.py?answer=55603 Finding the tracking code]
Line 19: Line 19:
 
== Pages to add it to ==
 
== Pages to add it to ==
  
* All S2 style pages, attached to the user of the journal, not the viewer?
+
* All S2 [[styles|style]] pages, attached to the user of the journal, not the viewer?
 
* Site schemed post/comment pages of a user's journal
 
* Site schemed post/comment pages of a user's journal
* The userpics page
+
* The [[Userpics_Wishlist|userpics]] page
* The profile page
+
* The [[Profile_Wishlist|profile]] page
 
* The todo page
 
* The todo page
* The memories pages
+
* The [[Memories_Wishlist|memories]] pages
 
* Scrapbook pages
 
* Scrapbook pages
* Vgift page
+
* [[Gifts/Virtual_Gifts_Wishlist|Vgift]] page
 +
 
 +
[[Category: Development Scratchpads]]

Latest revision as of 17:47, 28 March 2009

Needed

  • A userprop for Google Analytics ID.

Code to add

<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">
var pageTracker = _gat._getTracker("UA-xxxxxx-x");
pageTracker._initData();
pageTracker._trackPageview();
</script>

Finding the tracking code

Pages to add it to

  • All S2 style pages, attached to the user of the journal, not the viewer?
  • Site schemed post/comment pages of a user's journal
  • The userpics page
  • The profile page
  • The todo page
  • The memories pages
  • Scrapbook pages
  • Vgift page