Every event already has its own page — the URL behind the Copy link button — and that
page works with any theme or builder, because Manifyst renders and styles it itself. If a
builder is fighting you, sharing the event's own link always works.
To place a signup sheet inside a builder layout, add the [manifyst_event] shortcode (or the
Manifyst Event block, in builders that support WordPress blocks) to a text or shortcode
module.
If the sheet renders unstyled inside a builder, the builder is storing the shortcode
somewhere Manifyst's automatic detection cannot see (Elementor and some others keep content in
their own fields rather than the page body). Tell Manifyst to load its styles on that page
with a small snippet:
add_filter( 'manifyst_load_frontend_assets', '__return_true' );
Wrap it in your own page check if you only want the assets on specific pages. The equivalent
filter for the coordinator console is manifyst_load_console_assets.
Builder-built manager pages: the front-end management console checks that your selected
Manager Page contains the [manifyst_manage] shortcode before locking coordinators out of
the dashboard. A page built entirely in a builder may store that shortcode where the check
cannot see it — in that case the console still works, but the dashboard lockdown stays off
as a safety measure. Keeping the [manifyst_manage] shortcode in a standard shortcode/text
element (rather than a builder-specific module) satisfies the check.