If we use the script provided by Zopim in text widget it appears to work, or am i missing something?
<!–Start of Zopim Live Chat Script–>
<script type=”text/javascript”>
….
</script>
<!–End of Zopim Live Chat Script–>
The text alternative didn’t work for us either. Actually even though we are still getting the message in WordPress that Zopim can’t be activated, the chat feature is working on the front-end of our site.
@dfcappello could you using the latest version of the plugin 1.2.1 and see if it works for you?
@bencxr, I am using latest version of plugin 1.2.1.
An error notification appears when I link up account to zopim.
This is the error:
siteroot.com/wp-content/plugins/zopim-live-chat/accountconfig.php on line 28
The problem is that the function name (do_post_request()) change and the dev forgot to change it at two place.
File : aboutconfig.php
1- line:28 — It should be this : $signupresult = json_to_array(zopim_post_request(ZOPIM_SIGNUP_URL, $createdata));
2- line:70 — It should be this : $signupresult = json_to_array(zopim_post_request(ZOPIM_SIGNUP_URL, $createdata));
thanks for the heads up @gandhi11
1.2.1 should now be updated to resolve this bug now.
Hi, there.
How I can enable the zopim plugin and the dashboard, for a different user than “Administrator”?
Like a Editor or new user type (“Support”).
Thank You.
version 1.2.2 now adds User Capability levels for the zopim plugin.
use the Members plugin (http://ww.wp.xz.cn/extend/plugins/members/) to provide roles the ‘access_zopim’ capability.
or the following code could be used by adding to your theme
$role = get_role( 'editor' );
$role->add_cap( 'access_zopim' );