views:

163

answers:

1

We just launched and are looking to better understand where the users who are converting to registered users are actually coming from. We can see our traffic sources and referrals via Google Analytics and our other web statistics programs, but in volume, it's difficult to tie these specifically to which users in our database have converted and from where.

We have several "goals" in Google Analytics setup to better help track conversions, but what are others doing to associate user signups with inbound traffic sources?

One thought we've been kicking around - capturing the referral on the first page load and pass it along in the session into the registration form where you store it into the user record.

Any other solutions that are working successfully for you?

Thanks!

+1  A: 

Indeed, I would suggest storing the referrer in the user record. Then you can write some code to sensibly draw out additional data from the URL. For instance, you could parse Google URL's to determine the keywords used to discover your site. And your code could detect things like referrals from ad runs, specific SEO campaigns you're running, or partner deals you have going.

It would be beneficial to spend some time building an admin-only page to visualize these conversions to help you better learn what is working and what isn't. And when things are going well, such a page is encouraging for the whole team!

Barry Hess
Thanks, Barry. Have you had success capturing the referrer into the session when the user first lands and then writing it when they sign up?
shedd
I don't think there should be any problem with that idea. I say go for it!
Barry Hess