Embedded Editor Launch Modes
Embedded Editor Launch Modes
Control what users see when they first open the embedded editor.
Available Launch Modes
1. Template Gallery (gallery)
Users see a gallery of available templates to choose from.
<embed src="...?embed=CONFIG_ID&launch-mode=gallery" />
2. Direct Template (template)
Open directly into a specific template for editing.
<embed src="...?embed=CONFIG_ID&launch-mode=template" />
Requires a template ID in the URL path.
3. Blank Canvas (blank)
Start with an empty canvas at specified dimensions.
<embed src="...?embed=CONFIG_ID&launch-mode=blank&w=1080&h=1080" />
4. Clone Mode
Create a copy of a template for the user to customize.
<embed src="...?embed=CONFIG_ID&clone=TEMPLATE_ID" />
Configuration
Set the default in your Embed Settings:
- Go to Embed Settings
- Find Launch Mode
- Select:
gallery,template, orblank
Or override per-embed using URL parameters.
Template Selection Mode
When using gallery mode, control which templates appear:
Setting | Description |
|---|---|
| Show all account templates |
| Show only templates from specific folder |
| Show only templates for that external ID |
<!-- Show only templates from a specific folder -->
<embed src="...?embed=CONFIG_ID&launch-mode=gallery&folder=FOLDER_ID" />
<!-- Show account templates + user's templates -->
<embed src="...?embed=CONFIG_ID&external-id=user-123&include-account-templates=true" />
Best Practices
- Use
clonefor personalization flows - Use
gallerywhen users choose their design - Use
templatefor guided editing workflows - Use
blankfor creative freedom
Documentation: https://templated.io/docs/embed/launch-modes/
Updated on: 11/01/2026
Thank you!