Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

I received a voucher from LinkedIn which gives me $50 worth of Advertising, and as I've started out on my own as a web designer/developer I thought this would be a good opportunity to get some extra business.

Anyway, I've used LinkedIn's stat counter and it has said I've had ten "valid" clicks to my website. However, when I check my Google Analytics account, it states that one day I only received 6 clicks from LinkedIn, 4 of which had a 100% bounce rate and stayed on the website for 00:00:00.

I've spoken to LinkedIn about it, and they e-mailed me back saying a few things. They have said some users might have Javascript turned off, so won't show up on my Analytics software. He also said that my Analytics software might be tracking LinkedIn.com (which it is) and that this will over/under report registered clicks on my site.

To me, I'm suspicious that most of the clicks aren't 100% legit, and they might be trying to eat up my $50 voucher before I have to start paying. It does sound like a paranoid view point, but when one stat counter is saying I've had 10 clicks in a day, and my Google Analytics account is telling me only 6 clicks came from there.

Am I right to be paranoid or have I completely missed how these things work?

Cheers

share|improve this question

3 Answers

up vote 7 down vote accepted

There's a difference between PPC clicks and the website visits reported in Google Analytics. A click gets logged as soon as LinkedIn redirects the user to your site. However, your page needs to load in the ga.js code from Google's servers and then send an image request back before the visit is recorded. This process sometimes doesn't complete. Here's a few reasons:

  • The user leaves your site before the code is downloaded and run
  • The user clicks on a link deeper into your site before it's run
  • Other technical issues like the code just failing to download or people deliberately blocking it

The issue that your reporting is normal and happens with all PPC ad providers such as Google AdWords. However, 40% seems a quite high failure rate. Possible reasons include:

  • Sometimes the HTTP referrer used to show where a visit is coming from get's blocked or lost before it's picked up by GA
  • Your GA tracking code might not being installed properly
  • It could even be that 10 clicks isn't really enough to make judgments about as the results you have so far might not be statistically valid

My advice would be to try out using the GA URL tracking parameters (utm_source, utm_content etc) instead or relying on the referrer. It's the way Google advises tracking PPC campaigns anyway and has the added benefit that you can check your server logs to validate what you seen in the LinkedIn reports.

share|improve this answer
1  
Thank you for the answer, I will look in to it and make amendments. – mickburkejnr May 12 '11 at 21:15

LinkedIn's response sounds like a fair explanation of the difference you're seeing.

If you wanted a third datapoint to measure clicks on your ad, your could use bit.ly URLs in your LinkedIn ads to link to your site. Adding a '+' sign at the end of any bit.ly URL gives you a breakdown of the clickthrough. This has the added advantage that it doesn't require JavaScript, so it may prove a more accurate representation than what you're seeing in Google Analytics.

share|improve this answer
1  
Thanks, I will try this out now. – mickburkejnr May 12 '11 at 21:15

I'm finding the same thing with my own statistics gathering code. I use PHP, and when someone lands on my advertising landing pages, I log the referring URL ($_SERVER['HTTP_REFERER']) as well as other information into my database. So today I see that LinkedIn charged me for 6 clicks, but I can only find 5 clicks coming from linkedin.com. The day before they also charged me for 6 clicks, but I could only find 4 from linkedin.

I asked LinkedIn about this, and they gave me the answer about third party analytics, too, and how they might be unreliable. Though the analytics my code gathers doesn't rely on JavaScript. Perhaps something like Ewan mentioned is occurring, where someone clicks on the link, but for whatever reason doesn't actually get to the site.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.