This feature will allow you to embed a registration form directly on your own websites which simplifies the registration process for free events by integrating it into your website, making the user experience smoother and more cohesive.
To get started, navigate to Promoting > Embeddable Media > Event Registration and click on "View Embed Code." Additionally, you can preview the form by clicking the "Preview" button.
The embed form automatically adopts the event's theme, meaning it will reflect any specific background color set for the form inputs, placeholders, and similar elements.
It will also shows links to download the calendar invite after the registration is completed.
Please note that this form is specifically for registering attendees for free tickets and this feature is exclusive to the Success Plan.
Detecting when an attendee has been registered:
You might want to do this to track new registrations in your analytics tool or log them locally.
To detect when the embed form has successfully registered a new attendee, add the following code to your site:
<script>
window.addEventListener(
"message",
function (event) {
// Check if the message is from our registration form
if (event.data && event.data.event === "attendee_registered") {
// Log the attendee data
console.log("New attendee registered:", event.data.attendee);
}
},
false
);
</script>