VINTCER Help Center (Version- 1.4)
  • Learn to create Powerful websites in few minutes
  • Introduction to Builder
  • Getting Started
    • Create a New website.
  • Hosting FAQ
  • Connect your own Domain
    • GoDaddy Domain- Connect GoDaddy domain to your website
    • Connect NameCheap Domain
    • Google Domains- Connect google domains to your website
  • Change Themes
  • Menu- Navigation Bar
  • Adding Drop-down menu list in navigation Bar
  • SEO and Favicon
  • Button Designing
  • Slideshow builder and manager
  • Custom HTML, JS code
  • Custom HTML, CSS and JS code in sections or blocks
  • Google Analytics.
  • MailChimp Integration
    • Send a File to New Subscribers automatically.
    • Share Files with Contacts with MailChimp
  • AWeber Integration
    • Send PDF or files download link to subscribers.
  • SoundCloud Integration
    • Adding SoundCloud Tracks directly
  • Multi-language website
  • Google Translate
  • Sitemap (SEO)
  • SSL certificate
  • Adding Video to your website.
  • Video in Blocks.
  • Video using HTML code.
  • Wistia Video
  • Intercom Integration
  • Add Feedback form
  • Calendly- Schedules Meetings
  • How to add and configure built in Contact Forms
  • Install Disqus comments on your website
  • Adding Google Maps to your website
  • Upload files to AWS S3 and use them in your website
  • Adding External links to buttons
  • PayPal Donations
  • Countdown Timer
  • Add Twitter Feed to your website
  • How to add a PDF into your website
  • Pro settings
  • Cookie Consent app
    • Cookie Consent
  • Add Google Reviews to your website
  • Social Media Button
  • Social Media Share button
  • Facebook Like Button
  • Facebook comment plugin
  • Facebook PIXEL
  • How to activate license
  • Website Transfer to Client's Account
  • Page Manager
  • Responsiveness and Device Preview
  • Adding Password Protection to Pages in your Website
  • Instagram feed in your website using POWR Instagram plugin
  • Google Tag Manager
  • Referral Program
  • Add Live chat widget tawk.to to your website
  • Video pop-up (Lightbox)
  • E-commerce
    • Ecommerce - Sell products on your website
    • Stripe Integration
    • PayPal - Sell products using PayPal embed buttons
    • PayPal payments using payment links
    • Use Razopay pay buttons on your website
    • POWR e-commerce plugin
  • Business Email
    • Business Email (Email for domain)
    • What is DKIM signature
    • Signing into your Business Email Account
    • Business Email forwarding to another address
    • How to set up a condition (Business email forwarding)
  • MARKETING
    • IMOS Integrated marketing operating system
    • IMOS Live chat
    • IMOS Live Analytics
Powered by GitBook
On this page

Google Translate

Learn how to add Google Translate to your website (Multi-language website).

PreviousMulti-language websiteNextSitemap (SEO)

Last updated 7 years ago

To add Google translate to your entire website you need to add following code in Site header.

  1. Click on Setting and then choose Pro settings.

2. Copy the Below Code-

<body>
<div id="google_translate_element" style="text-align: center;">
<script type="text/javascript">
function googleTranslateElementInit() {
  new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</body>

3. Copy and Paste the above code into PRO setting or Site Header.

Click on Save button, make sure to Publish the changes.

Note:- You can align the Google translate button to Right, Left and Center

To align the Translate button in center. Paste this code-

<body>
<div id="google_translate_element" style="text-align: center;">
<script type="text/javascript">
function googleTranslateElementInit() {
  new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</body>

If you want Translate button in right side.

<body>
<div id="google_translate_element" style="text-align: right;">
<script type="text/javascript">
function googleTranslateElementInit() {
  new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</body>

If you want Translate button in left side.

<body>
<div id="google_translate_element" style="text-align: left;">
<script type="text/javascript">
function googleTranslateElementInit() {
  new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</body>