Advertisement
filipr27

ga - free_to_paid

Mar 25th, 2023
644
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Fire this event when a user successfully upgrades from the free plan to a paid plan.
  2.  
  3. <script>
  4. window.dataLayer = window.dataLayer || [];
  5. window.dataLayer.push({
  6.  'event': 'free_to_paid',
  7.  'user_plan': 'pro',  //Variable value based on the plan the user selected. E.g. "basic", "pro", etc.
  8.  'payment_frequency': 'monthly',  //Variable value. E.g. "monthly" or "annually".
  9.  'user_id': 'asdf1234'  //User ID from your website database.
  10.  });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement