2

I am looking for a solution to stop Google Translate from activating on my Wordpress Site. Does any know of PHP or a function that can be placed on the theme functions.php to stop this.

Would prefer a solution that can be placed across the entire theme, rather than by single-page.php

Screenshot of Google Translate activating

Thank you for your time and I appreciate your help.

Darren
  • 2,176
  • 9
  • 42
  • 98
  • Does this answer your question? [How to disable google translate from html in chrome](https://stackoverflow.com/questions/12238396/how-to-disable-google-translate-from-html-in-chrome) – Flimm Sep 25 '20 at 12:11

1 Answers1

4

I have found the solution and it was rather simple. Within the theme header.php I placed

<meta name="google" content="notranslate"/>

This has stopped Google Translate from activating.

Thank you for your time.

Darren
  • 2,176
  • 9
  • 42
  • 98