Same here, I have built the site in English and translated it to German and Spanish, however, I want the primary language to be German. and I canât find a way to switch it to GermanâŠ
I found a workaround to set the primary locale to a dummy locale that is never reached or seen, and used for forwarding.
In addition to the locale you want as primary (e.g., âdeâ), create an English locale (âenâ) and set the (dummy) primary locale to another English locale (e.g., âen-châ).
I create a subdirectory for each locale so that when users visit the website without any locale specified in the locale, it is redirected to the dummy primary locale.
To redirect from the dummy primary locale, to the wished primary locale, I add this code in the header:
<script>
// Small fix to change primary locale
// The primary locale is 'en-ch', but is unused and will always be redirected to 'de'.
const DUMMY_PRIMARY_LOCALE = 'en-ch';
const REAL_PRIMARY_LOCALE = 'de'
const pathTokens = window.location.pathname.split('/');
if (pathTokens.length > 1 && pathTokens[1] == DUMMY_PRIMARY_LOCALE) {
const newPath = window.location.origin + window.location.pathname.replace(DUMMY_PRIMARY_LOCALE, REAL_PRIMARY_LOCALE);
window.location.replace(newPath);
}
</script>
<style>
/* Small fix to change primary locale */
/* In settings, 'en-ch' is the primary locale, but it is always redirected to 'de'.*/
.locale_list .locale_item:has(a[hreflang='en-ch']) {
display: none;
}
</style>
To change your primary language, you need to switch the Main Locale to Hungarian and then set the next locale to English. However, be aware that all the content youâve already adjusted will be lost, and youâll have to manually reapply the translations.
Unfortunately, this is quite unfair considering the price Webflow charges for localization. Hope this helps, though!