Join the Webstudio community

Updated 2 days ago

Language Switcher

Has anyone implemented a lang switcher that works without sending user back to home page. This is my setup:

Two languages AR and EN (EN will be default)

  • CMS data from Hygraph. Enabled Localization of 2 Languages (AR / EN) and CMS content has fields for (title, content) for both languages
  • Then I pull this data in Webstudio via GraphQL.
  • I have 2 individual GraphQL queries for each language ( localizations(locales: ar) and locales: en - respectively)
  • in WS, I have all pages on root (default language english) and then a folder called "AR" in which Arabic copies of the same pages (including CMS pages such as Post and Post directory)
All this works fine until here. My Directory shows correct content in Arabic (via Locales:ar) and english (via locales:en) and my post detail shows correct content too.

so example my URLs are like this
example.com/news/hello-world (For en post detail page)
example.com/ar/news/hello-world (for ar post detail page)
example.com/news/ (En posts page)
example.com/ar/news/ (ar posts page)

Rest of the pages are static so no hygraph required for that.

Now the question:
How do i correctly implement a lang switcher in header slot
So that, user can easily switch languages from one click while staying on the same page, but get directed to "/ar/slug" when clicked on AR or "/slug" when clicked again on EN in the switcher

And set Language in page settings dynamically too (if possible but not mandatory)

Thanks
m
J
3 comments
Hello again - does anyone from WS team or otherwise have any pointers to impletement this (language switcher) please Thanks
Hi @mustafasheikh, I'm taking a wild guess here without testing...

Option 1 (better if it works - but would only work for dynamic content)
English button β†’ /{slug}
Arabic button β†’ /ar/{slug}

Option 2 (add JS)
<script>
function switchLang(toLang) {
const path = window.location.pathname
const isArabic = path.startsWith('/ar')
const slug = isArabic ? path.replace(/^/ar/, '') : path
const newPath = toLang === 'ar' ? '/ar' + slug : slug
window.location.href = newPath
}
</script>

<button onclick="switchLang('en')">EN</button>
<button onclick="switchLang('ar')">AR</button>


Both of these are just guesses at the moment.
Thanks Jeremy, will give it a shot
I tried a few JS solutions from Chat GPT that do half the job ( i guess on page refresh they didn't fire) but ill try this thanks
Add a reply
Sign up and join the conversation on Discord
Both of these are just guesses at the moment.","upvoteCount":0,"dateCreated":"2025-03-31T15:30:18.833Z","datePublished":"2025-03-31T15:30:18.833Z","dateModified":"2025-03-31T15:30:18.833Z","url":"https://help.webstudio.is/language-switcher-gPl5PDj1X0Xk#04f74acb-f65d-435f-a46b-39068eaf5dc3","author":{"@type":"Person","url":"https://help.webstudio.is/members/6c66325d-fff8-43a2-b97e-549275813461","name":"Jeremy","identifier":"6c66325d-fff8-43a2-b97e-549275813461","image":"https://cdn.discordapp.com/avatars/383871071566430208/6de448190b31c7a9af49e5fbd4f5d047.webp?size=256"}},{"@type":"Answer","text":"Thanks Jeremy, will give it a shot I tried a few JS solutions from Chat GPT that do half the job ( i guess on page refresh they didn't fire) but ill try this thanks","upvoteCount":0,"dateCreated":"2025-04-01T01:00:49.869Z","datePublished":"2025-04-01T01:00:49.869Z","dateModified":"2025-04-01T01:00:49.869Z","url":"https://help.webstudio.is/language-switcher-gPl5PDj1X0Xk#74989471-3827-482c-a793-6669734a83a7","author":{"@type":"Person","url":"https://help.webstudio.is/members/604be5c8-ce0f-4288-9191-e6ffa7142175","name":"mustafasheikh","identifier":"604be5c8-ce0f-4288-9191-e6ffa7142175","image":"https://cdn.discordapp.com/avatars/1024094538601603164/e81d6561a15e4caa72031bad088de650.webp?size=256"}}]}}