Hi gogenich,
Thanks for the update.
It’ll take a bit of coding to hide the widget via mobile. First, you’ve disable / delete the Zopim plugin and install it manually. It’s relatively easy =)
Here’s how you can install Zopim chat widget at WordPress, manually.
1. Log on to WP-admin page.
2. Find “Appearance” located in the side bar.
3. Hover your cursor over at “Editor” and click it
4. Find “Footer (footer.php)” and click it
5. Paste your Zopim code right before the </body> tag inside footer template.
6. Click at “Update File” below and done!
Now you have the widget on your website, next step is to hide it. Add the code that follows and put your widget code within the if statement.
<script type=”text/javascript”>
var ua = navigator.userAgent.toLowerCase(),
platform = navigator.platform.toLowerCase();
platformName = ua.match(/ip(?:ad|od|hone)/) ? ‘ios’ : (ua.match(/(?:webos|android)/) || platform.match(/mac|win|linux/) || [‘other’])[0],
isMobile = /ios|android|webos/.test(platformName);
if (!isMobile) {
//your widget code here.
}