Chromeless Mode
Chromeless mode removes all navigation from Wortfreunde Studio. This lets you embed individual pages, such as a post or an edit view, into external systems like SharePoint, intranets or customer portals, without users being able to navigate within Studio.
How It Works
Append ?navigate=false to any Studio URL:
https://studio.wortfreunde.ch/client/123/t/42/posts/301?navigate=false
This will:
- Hide navigation: top bar, account switcher and user menu are not displayed
- Hide back buttons: users cannot navigate to other pages
- Hide action menus: kebab menus (duplicate, delete, etc.) are not displayed
- Keep main content: the actual page content renders normally

Examples
Embed in an iframe
<iframe
src="https://studio.wortfreunde.ch/client/123/t/42/posts/301?navigate=false"
width="100%"
height="800"
frameborder="0">
</iframe>
Combine with SSO
Particularly useful in combination with the SSO API: users are automatically signed in and see the content directly, no login form, no navigation.
// Generate SSO token and redirect user in chromeless mode
const { token } = await createSsoToken(userEmail, firstName, lastName);
const studioUrl = `https://studio.wortfreunde.ch/client/123/t/42/posts/301?sso=${token}&navigate=false`;
window.open(studioUrl);
The sso and navigate parameters can be combined in any order. The SSO token is removed from the URL after login, navigate=false is preserved.
Supported Pages
Chromeless mode works on any authenticated Studio page, for example:
| Page | Example URL |
|---|---|
| View post | /client/:id/t/:team/posts/:post_id?navigate=false |
| Edit post | /client/:id/t/:team/posts/:post_id/edit?navigate=false |
| Content plan | /client/:id/t/:team/posts?navigate=false |
| Ideas | /client/:id/t/:team/ideas?navigate=false |
Note: Users still need a valid session (via login or SSO token) to access pages in chromeless mode. Without authentication, they will be redirected to the login page. It is not restricted to manipulate the url and access other information this user has now access to as an editor.