Answer the question
In order to leave comments, you need to log in
How to track (google analytics) registration on a site that requires email verification. mail?
It is required to track the free registration on the site, which requires confirmation by email.
We need information about the conversion of users who came from adWords and completed the entire registration procedure (including email confirmation).
How to create a goal in google analytics and track the conversion?
Registration process:
Answer the question
In order to leave comments, you need to log in
After verifying a new account, the user can be redirected to a page with congratulations (something like /signup_greetings/), which should be the goal
You can generate different hash codes for adWords visitors and everyone else.
In this case, we have the total number of people who filled out the registration form and received an email (N), of which N1 - came from adWords, N2 - all the rest. Due to the generation of different hash codes, the total number of those who confirmed the registration (M) is divided into 2 groups - M1 and M2 (respectively, adWords and the rest). Then we need the percentage of those who confirmed the registration from the total number of all those who filled out k1 = N1 / M1 * 100%.
Similarly, the percentage of those who confirmed the registration from the total number of all those who clicked on the ad is calculated (N) k2 = N1 / M1 * 100%.
Hmm, so it seems to set a cookie and closing the browser does not matter here ...
we read
Then, after entering the site, we set the cookie from where the person came from, at the registration stage, we read the cookie and attribute it to the user field.
When the email is confirmed, insert something like
_gaq.push(['_trackEvent', 'cookie value, take from the database that was recorded during registration', 'email confirmation']);
You can add a hidden field (from_adwords) to the registration form, in which you can specify whether the user came from adWords. And then view the users in the database (type:) SELECT * FROM users WHERE from_adwords = 1 AND status = "confirmed"
.
But the task is to show directly in Analytics .
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question