Skip to main content
Version: v12.0.0

Disable website translator on mobile

The translation feature on mobile devices is enabled by default, but you can disable it by setting the mobileEnabled parameter to false if necessary.

Example of disabling the website translator on mobile

<body>
<!-- Import the latest version of the Hand Talk plugin -->
<script src="https://plugin.handtalk.me/web/latest/handtalk.min.js"></script>
<script>
var ht = new HT({
// Replace with your access token
token: "TOKEN",
// Disables the website translator on mobile
mobileEnabled: false
});
</script>
</body>