Am I the only one seeing this? I have checked my code and am running my analytics code in the footer of my website, but when you go to my website it is running an ad. Please tell me if you see this. http://www.utahluxury.com Thanks for your help
Yup, I have the analytics code in there. <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "UA-######-#"; urchinTracker(); </script> Code (markup): Bleaped out my numbers so I dont have any url issues, but that is what is in my footer.
Woah that's bizarre.. Anyway it looks like you're using the old code for google analytics, the new code looks like this: <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-*******-*"); pageTracker._initData(); pageTracker._trackPageview(); </script> Code (markup): How the old code is generating a google ad is beyond me. The old code is still supposed to work but apparently the newer code has more features.
Wow thanks for the info. I didnt know that I was running old code. You would think that google would have a warning or something on login telling you to update the code. Thanks again!!!
this is indeed strange. i'm using the old code on one of my sites and i just took a look. nothing strange there.
Found the problem. It wasnt analytics that was spitting out the code, it was feedburner. I have no idea why my feedburner code was doing it but I moved the code to the header and voila ads stopped showing up. Thanks for all your help guys!!