Make registration effortless for your attendees with the Embeddable Form on your landing page. With just a few clicks, attendees can easily register for the event, ensuring a smooth and seamless experience.
Instead of clicking the Buy Tickets button on the landing page, being redirected to the form, and clicking a few more buttons to get to the end, you can make the form available on the landing page. This way, they just enter their information and submit it!
When to Use the Simple Registration
Use this feature if you only have free tickets and will not need to ask for much information from your attendees. This is perfect for events where the only requirement is a ticket. We do not recommend this if you have other restrictions like registration approvals, a waitlist, the use of access codes, and more.
Enable Simple Registration
Go to Event Design > Event Website
Click Edit Website
Select Embeddable Form
Test the Simple Registration
The embeddable form will appear on the right side of your About tab's landing page. It should show all the fields enabled for the order form. If there's more than 1 free ticket type, these will appear in a dropdown. Registrants can only get 1 ticket per registration.
After clicking Register, a pop-up should appear to confirm that the registration is complete.
Important Things to Note Before Using the Simple Registration
This feature does not play well with other registration features. If you're using any of the features below, then it would be best not to use the simple registration feature, as it will override your settings for the below features, or it will not work at all:
Sell paid tickets and add-ons
Buy Tickets Button
Assigned Seating
Recurring Events
Registration Approval
Waitlist
Access Codes
Discount Codes
Limited Display Codes
Pay Later
Each ticket holder must have a unique email address
Limiting registrations to specific email domains
Disclaimer
Exit Intent Pop-Up
Enable Captcha to prevent bots
Note: The confirmation page for a completed embeddable form can be customized.
Change the "Buyer Details" text
If you want to replace the "Buyer Details" copy with something like "Register Below", you can add a custom script to change that text.
To add the script, go to Settings > Integration > Add Custom Script on the Landing Page
Click the arrow to see the sample custom script
Click the arrow to see the sample custom script
<script>
(function() {
function changeLabels() {
const labels = document.querySelectorAll('#registration-type') || [];
if (labels.length) {
labels.forEach((label) => {
if (label.innerText === 'Buyer Details') {
label.innerText = 'Register Below';
}
});
}
};
window.addEventListener('load', () => {
changeLabels();
});
window.addEventListener('resize', () => {
changeLabels();
});
const observer = new MutationObserver(() => {
changeLabels();
});
observer.observe(document.body, {
childList: true,
subtree: true
});
})();
</script>