Hilfe

Hier findet ihr Anleitungen, Erklärungen und alles Wichtige rund um Wortfreunde. Damit ihr das Beste aus eurer Content Arbeit herausholen könnt.

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

Chromeless mode: post without navigation

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);

Supported Pages

Chromeless mode works on any authenticated Studio page, for example:

PageExample 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