Mobile app version of vmapp.org
Login or Join

Login to follow query

More posts by @Heady270

1 Comments

Sorted by latest first Latest Oldest Best

 

@Cooney921

May be the session level custom variable is enough for you. You can use a custom variable scoped to the session level for user login status.

Async Snippet:

_gaq.push(['_setCustomVar',
1, // This custom var is set to slot #1 . Required parameter.
'User Type', // The name of the custom variable. Required parameter.
'Member', // Sets the value of "User Type" to "Member" or "Visitor" depending on status. Required parameter.
2 // Sets the scope to session-level. Optional parameter.
]);


You can find more information in this page.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme