Advertisement
Guest User

Partner Tracking Pixel (Third-party integrations)

a guest
Oct 31st, 2014
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. ONTRAPORT Partner Tracking Pixel for third-party HTML integrations:
  2.  
  3. 1) Pass CGI variables on Smart Form in ONTRAPORT or OfficeAutopilot
  4. 2) Place script below on Smart Form Thank You page (cannot be a Landing Page - the script won't work there)
  5.  
  6. <?php
  7. echo "<img src='https://replacewithyoursubdomain.ontraport.com/p?order_id=0&aff_only=1&Email=".urlencode($_GET['email']).
  8. "&First_Name=".urlencode($_GET['firstname']).
  9. "'>";
  10. ?>
  11.  
  12. 3) Place Smart Form into third-party using Smart Form HTML (as long as you can place the Form in a way that still passes CGI variables via the TY page URL this will work)
  13. 4) Publish page where Form is located, copy URL
  14. 5) Using copied URL create a Standard Link Promo Tool
  15. 6) Send Promo Tool to Partner/Affiliate
  16.  
  17. You'll need to make changes to the script above if using OfficeAutopilot:
  18. Replace: &Email="
  19. With: &E-Mail="
  20. This part stays the same: .urlencode($_GET['email']).
  21. End result: &E-Mail=".urlencode($_GET['email']).
  22.  
  23. Also, OfficeAutopilot subdomains end with .NET rather than .COM.
  24. (ontraport.net vs. ontraport.com)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement