If you use an analytics service that allows you track individual users by name you can use the ScreenStepsViewer
javascript object identify users that are logged in.
You will want to first check for the existence of the object. It will only be present for users that are logged into your ScreenSteps site.
Here is some example javascript that you will need to adapt to your own needs:
if (ScreenStepsViewer) {
var email = ScreenStepsViewer.email;
var name = ScreenStepsViewer.name;
var login = ScreenStepsViewer.login;
}
You can then use these values with your analytics javascript to identify individual users.
Hello Screensteps, do I need to just copy / paste the above in the google analytics code?
Please let me know.
Thanks, Ivo