Register for the webinar and enter your phone number
Copy join link from the address bar and paste in Notepad, etc
Grab relevant tenant code from this tutorial below and paste in Notepad, etc
Paste and replace tenant id from join link into the code from this tutorial
Add new blank page in funnel Pagebuilder & remove ALL content
Open 'Tracking Code' under 'Settings'
Copy and paste code from Notepad into 'Header Code'
Copy and paste into Notepad etc, the new blank page URL from the Pagebuilder & add: ?r= HERE PUT REGISTRANT VALUE from original join link you pasted earlier in Notepad etc.
The new link should take you into the webinar.
Use the 'Code to use within your Timeline' below with your new values and paste anywhere in your timeline you wish to use the new branded link.
Code to use within your Timeline:
https://YOUR_DOMAIN/LINK_TO_SCRIPT_PAGE?r={{!subscriber-uuid!}}
JavaScript Code Snippet (If using a page builder):
<script>
var user = "XXXXXXXX";
const params = new Proxy(new URLSearchParams(window.location.search), {
get: (searchParams, prop) => searchParams.get(prop),
});
let reg = params.r;
var combined = user + "/" + reg;
var location = "https://joinevent.link/" + combined;
</script>
PHP Code Snippet (If Self Hosting / using Wordpress):
<?php
$user = 'XXXXXXXX';
$r = (!empty($_GET['r'])) ? $_GET['r'] : '';
$combined = $user . '/' . $r;
header ('location: https://joinevent.link/' . $combined);
?>