filipr27

ga - sign_up

Dec 6th, 2022 (edited)
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Fire this event each time a new user successfully signs up.
  2.  
  3. <script>
  4. window.dataLayer = window.dataLayer || [];
  5. window.dataLayer.push({
  6.  'event': 'sign_up',
  7.  'sign_up_method': 'email',  //Variable value based on the method used to register, e.g. "email" or "google".
  8.  'promo_code': 'none',  //Variable value based on which promo code was applied. E.g. "none", "newyear2023", etc.
  9.  'user_id': 'asdf1234'  //User ID from your website database.
  10.  });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment