I am trying to track the number of outbound clicks by Google Analytic on an advertisement banner on my website.
The way this works is, if you are logged in, you see no banner. If you are not logged in, you see the banner. I have successfully done this on my wordpress site using the following code:
<?php
if (is_user_logged_in()){
echo "No Ads - Thank You for Supporting Us";
}
else {
echo "
<a href=\"http://www.advertiser.org/\" onClick=\"pageTracker._trackEvent('Outbound', 'CuteDog', '300sb');\" target=\"_blank\" rel=\"nofollow\"><img src=\"http://www.mydomain.com/box/cp/cuteDog.gif\" width=300 height=250 alt=\"Cute Dog\" style=\"border:none;\" /></a>
";
};
?>
Now, the banner and everything works, but it is not being tracked by GA. I am quite sure I have the onclick function correct:
onClick="pageTracker._trackEvent('Outbound', 'CuteDog', '300sb');"
My GA tracking code is located in the header of my page, and it is the most latest code:
<script type="text/javascript">var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-8441420-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();</script>
What is it that I'm doing wrong ???