Event type group
Create an event type group in the dashboard, add the event types to it and copy the group token.
html
<div id="calendar"></div>
<script src="https://iframe.zaptime.app/zaptime.js"></script>
<script>
Zaptime({
type: "group",
config: { token: "YOUR_GROUP_TOKEN" },
}).render("#calendar");
</script>The group's title, description, avatar and theme come from the dashboard. Clicking a card opens that event type's calendar with a back button.
Group mode works with the floating button, inline button and popup as well:
html
<script>
Zaptime.popup({
type: "group",
config: { token: "YOUR_GROUP_TOKEN" },
});
</script>