Skip to content

Instantly share code, notes, and snippets.

@mattm
Created September 5, 2016 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattm/84d8f04c7e4007097193f22c9a6110f0 to your computer and use it in GitHub Desktop.
Save mattm/84d8f04c7e4007097193f22c9a6110f0 to your computer and use it in GitHub Desktop.
Advanced homepage analytics
// Add this below the analytics tracking:
if ( sectionName === 'pricing' ) {
setCookie( 'viewed_homepage_pricing', 'true' );
}
// Then in your sign up event:
analytics.record( 'Signed Up', {
viewed_pricing: getCookie( 'viewed_homepage_pricing' ) === 'true'
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment