• Resolved jatinder1987

    (@jatinder1987)


    Hi,

    I want to use 2 languages on site. Italian and English. I want default site to be loaded in italian language. I have set default language in general>settings to Italian. When I load the site it loads in english and on changing language from right corner language is not changed. I tested other languages and they are working fine ? Please help me

    Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author edo888

    (@edo888)

    Hi,

    Your website is in English, so you must set Translate from to English.

    If you want to automatically change the language to Italian for first time visitors, you can add the following js code into your theme footer:

    <script>
    if(localStorage.getItem("ChangeLanguageFirstTime") === null) {
        document.cookie = 'googtrans=/en/it';
        localStorage.setItem("ChangeLanguageFirstTime", true);
    }
    </script>

    I do not recommend doing this.

    Thanks! ??

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.