Designer API
Control the Webflow Designer
page.useTitleAsSearchTitle(shouldUseTitle)
Set the page title as the search title.
1page.useTitleAsSearchTitle(use: boolean): Promise<null>;
boolean
Promise<null>
null
A Promise that resolves to null.
1// Get Current Page2const currentPage = await webflow.getCurrentPage()34// Set title as search title5await currentPage?.useTitleAsSearchTitle(true)
Try this example