WordPress recipe
Add Eventyvo embeds to WordPress without a plugin.
Option A — Custom HTML block
- Edit the page → add a Custom HTML block
- Paste:
<div data-eventyvo="event-card" data-event-slug="my-event" data-theme="light"></div>
<script async src="https://docs.eventyvo.com/embed/v1/eventyvo-embed.js"></script>
- Publish and view the front-end (blocks may not preview iframes in the editor)
Option B — Theme footer script
If many pages need embeds, enqueue the loader once in your theme / child theme:
wp_enqueue_script(
'eventyvo-embed',
'https://docs.eventyvo.com/embed/v1/eventyvo-embed.js',
[],
null,
true
);
Then place only the <div data-eventyvo=...> markup in posts.
CSP plugins
If you use a security plugin that sets CSP, allow docs.eventyvo.com for scripts and frames — CSP guide.
Registration
Use data-eventyvo="register" for a CTA button, or link to your subwebsite Register page for a full form.