Skip to content

Instantly share code, notes, and snippets.

@MR-POSITIVE
Forked from GendelfLugansk/README.md
Created September 19, 2022 07:30
Show Gist options
  • Save MR-POSITIVE/d6ffdbe066c44f2561b8932eae878fac to your computer and use it in GitHub Desktop.
Save MR-POSITIVE/d6ffdbe066c44f2561b8932eae878fac to your computer and use it in GitHub Desktop.
Dynamically change tawk locale

If you need to change tawk's locale dynamically (i.e. in SPA), here is the code I use. There is a small issue, though - everytime tawk adds new div to body and there is no way to correctly detect it and remove (ids are dynamic and there is no classname). However, as far as it is hidden, this should not be a problem.

function _setupTawk(locale) {
/**
* Links for language-specific channels or projects, you can find them in original tawk embed code
*/
const localeToLink = {
ru: 'https://embed.tawk.to/secret/secret',
en: 'https://embed.tawk.to/secret/secret',
};
/**
* Hide widget if tawk is loaded
*/
if (
window.Tawk_API !== undefined &&
typeof window.Tawk_API.hideWidget === 'function'
) {
window.Tawk_API.hideWidget();
}
/**
* Delete script tags of tawk
*/
const scripts = document.getElementsByTagName('script');
for (let i = 0; i < scripts.length; i++) {
const tag = scripts[i];
if (tag.getAttribute('tawk') === 'yes') {
tag.parentNode.removeChild(tag);
}
}
/**
* Delete anything related to tawk, otherwise new widget would not be loaded
*/
for (const name in window) {
if (
window.hasOwnProperty(name) &&
(name.includes('tawk') || name.includes('Tawk'))
) {
delete window[name];
}
}
/**
* Almost the same code as original
*/
window.Tawk_API = {};
window.Tawk_LoadStart = new Date();
(function() {
const s1 = document.createElement('script'),
s0 = document.getElementsByTagName('script')[0];
s1.async = true;
s1.src = localeToLink[locale]; //Here we use correct url for locale
s1.charset = 'UTF-8';
s1.setAttribute('crossorigin', '*');
s1.setAttribute('tawk', 'yes'); //This line is used to mark tawk script
s0.parentNode.insertBefore(s1, s0);
})();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment