This article is for WebinarJam and EverWebinar.

Enable Custom Confirmation Page

When a person registers for your webinar, choose to direct them to a default confirmation page or a custom page.

To use a custom confirmation page:

  1. Go to the Thank You step in the webinar configuration wizard
  2. Open the Default vs Custom confirmation page module and select Your own custom page
  3. Enter the link to your custom page in the Post-registration confirmation page field
    • Turn Send register information and webinar information on or off. This option is ON by default.

Thank you page - Custom page URL


Send Registration and Webinar Information

If the registration confirmation page is hosted outside the WebinarJam/EverWebinar system, some registration information can be passed as parameters in the URL if you want to display them on the external page. This is optional. To enable this, make sure Send register information and webinar information is turned ON at the Thank You page step of the webinar configuration.

Important: Using the registration data sent in the URL string requires Javascript coding knowledge. URL parameters allow advanced users with programming skills to customize a confirmation page. Learn more from this SitePoint article.

Registration URL Parameters

ParametersExample (Decoded)Description
wj_lead_first_nameJohnData entered in the First name registration form field.
wj_lead_last_nameSmithData entered in the Last name registration form field (if collected).
wj_lead_emailjohnsmith@domain.comData entered in the Email address registration form field.
wj_lead_phone_country_code+1Country code selected in the registration form (if collected).
wj_lead_phone_number1234567890Data entered in the Phone number registration form field (if collected).
wj_lead_unique_link_live_roomUNIQUEReturns a unique system-generated access link for the registrant.
wj_room_passwordUNIQUEAn alphanumeric password for the webinar room (if enabled in the webinar configuration). IMPORTANT: The password is passed in plain text.
wj_next_event_dateMonday, 31 August 2020Event date displayed as Day, DD MMMM YYYY.
wj_next_event_time1:45 AMEvent time displayed as HH:MM AM/PM. The time displayed will match the standard format used in the country represented by the flag in the webinar's language selection.
wj_next_event_timezonePacific Time (US and Canada) GMT-7Time zone displayed as location and GMT.
wj_event_ts1598863500Event Unix timestamp.
wj_event_tzAmerica/Los_AngelesTime zone displayed as TZ identifier.

Take Note

  • Parameters containing personal data (ie, wj_lead_first_name, wj_lead_last_name, wj_lead_email, wj_lead_phone_country_code, and wj_lead_phone_number) are sent only if Send register information and webinar information is turned on in the webinar configuration.
  • Parameters are passed to the custom confirmation page automatically. No additional configuration is required.
  • Parameters are passed every time, even if they are empty.
    • Exception: The password parameter is generated only if password protection is enabled in the webinar configuration.
  • Parameters are UTF-8 encoded and must be decoded for display on a page. Example: email@domain.com will be passed as email%40domain.com.

URL Example

The URL is made up of two parts:

  • Base URL: https://www.domain.com/YOUR-PAGE
  • Parameters: ?wj_lead_first_name=John&wj_lead_last_name=&wj_lead_email=johnsmith%40domain.com [...]

The parameters portion of the URL begins with ? and individual parameters are separated by &.

  • Parameters in the following example are shown in blue, with their values in red
  • Example shows data sent by a registration form that only asked for first name and email address. Note how some parameters carry no value because the fields were not requested in the registration form.
https://www.domain.com/YOUR-PAGE?wj_lead_email=johnsmith%40domain.com&wj_lead_first_name=John&wj_lead_last_name=&wj_lead_phone_country_code=&wj_lead_phone_number=&wj_room_password=&wj_lead_unique_link_live_room=https%3A%2F%2Fevent.webinarjam.com%2Fgo%2Flive%2F12%2F0g02hkd4m8vy&wj_event_ts=1598863500&wj_event_tz=America%2FLos_Angeles&wj_next_event_date=Monday%2C+31+August+2020&wj_next_event_time=1%3A45+AM&wj_next_event_timezone=Pacific+Time+%28US+and+Canada%29+GMT+-7
Important: This code is provided as an example only. Always build a new URL with the parameters needed for your own use.

Activate Confirmation Email Message

If you turn off Send register information and webinar information or choose NOT to include custom parameters in the confirmation page, make sure the confirmation email at the Notifications step is active. The confirmation email sends registrants a unique link to the webinar room and a reminder of the event's date and time.