Multiple Attendee Type Events (Additional People Can Be Added to the Registration Record In the Same Workflow e.g. "Register Others")
If your registration / ticketing workflow allows for registrants to add additional attendees at somepoint in the process, you will need to add additional Authorizer Widgets to the confirmation page, with an additional parameter in each widget.
Add 1 additional Authorizer Widget for for each additional attendee, with the inclusion of the additional = true parameter. So, if a registrant can add up to 10 colleagues to his/her registration, you will need to add 1 normal Authorizer and 10 additional Authorizer Widgets with the parameter shown below. The code needs to be updated with the Registration / Ticketing Company's params for email, first, last, company, and title, as usual.
ADDITIONAL ATTENDEES: If the attendee registered additional attendees, you must add one extra call for each additional attendee with the parameter additional = true:
Method One:
-
<script src="https://cdn.ingo.me/widgets-loader/latest/js/ingo.loader.widget.js"></script> <script> window.InGo.ingoWidget({ widgetId: "[INGO-WIDGET-ID]", attendee: { additional: true, email: "##User’s email inserted here##", firstName: "##User’s first name inserted here##", lastName: "##User’s last name inserted here##", company: "##User’s company inserted here##", title: "##User’s job title inserted here##" }}); </script>
Method Two:
<script
src="https://cdn.ingo.me/widgets-loader/latest/js/ingo.loader.widget.js"
data-ingo-id="[INGO-WIDGET-ID]" data-ingo-additional="true"
data-ingo-attendee.email="##User's email inserted here##"
data-ingo-attendee.first-name="##User's first name inserted here##"
data-ingo-attendee.last-name="##User's last name inserted here##"
data-ingo-attendee.company="##User's company inserted here##"
data-ingo-attendee.title="##User’s job title inserted here##">
</script>
Comments
0 comments
Please sign in to leave a comment.