Version Description
- Fix bug where account deactivates linking but widget still shows up
Download this release
Release Info
Developer | bencxr |
Plugin | Zendesk Chat |
Version | 1.3.3 |
Comparing to | |
See all releases |
Code changes from version 1.3.2 to 1.3.3
- readme.txt +4 -1
- zopim.php +2 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: bencxr
|
|
3 |
Tags: chat, chat online, contact plugin, contact us, customer support, free chat, chat software, IM chat, live chat, live chat inc, live chat services, live chat software, live chatting, live help, live support, live web chat, livechat, live help, live support, olark, online chat, online support, php live chat, snapengage, support software, website chat, wordpress chat, wordpress live chat, wordpress live chat plugin, Zopim, zendesk, Zopim live chat, banckle, clickdesk, click desk
|
4 |
Requires at least: 3.1
|
5 |
Tested up to: 3.8.1
|
6 |
-
Stable tag: 1.3.
|
7 |
|
8 |
Zopim lets you monitor and chat with visitors surfing your store in real-time. Impress them personally and ease them into their purchase.
|
9 |
|
@@ -48,6 +48,9 @@ What are you waiting for? Download Zopim Live Chat plugin now and <a href="https
|
|
48 |
* Arabic | Bulgarian | Chinese | Croatian | Czech | Danish | Dutch; Flemish | Estonian | Faroese | Finnish | French | Georgian | German | Greek | Hebrew | Hungarian | Icelandic | Indonesian | Italian | Japanese | Korean | Kurdish | Latvian | Lithuanian | Macedonian | Malay | Norwegian Bokmal | Persian | Polish | Portuguese | Romanian | Russian | Serbian | Slovak | Slovenian | Spanish; Castilian | Swedish | Thai | Turkish | Ukranian | Urdu | Vietnamese
|
49 |
|
50 |
== Changelog ==
|
|
|
|
|
|
|
51 |
= 1.3.2 =
|
52 |
* Refactored css loading to accommodate older PHP versions
|
53 |
* Included css file
|
3 |
Tags: chat, chat online, contact plugin, contact us, customer support, free chat, chat software, IM chat, live chat, live chat inc, live chat services, live chat software, live chatting, live help, live support, live web chat, livechat, live help, live support, olark, online chat, online support, php live chat, snapengage, support software, website chat, wordpress chat, wordpress live chat, wordpress live chat plugin, Zopim, zendesk, Zopim live chat, banckle, clickdesk, click desk
|
4 |
Requires at least: 3.1
|
5 |
Tested up to: 3.8.1
|
6 |
+
Stable tag: 1.3.3
|
7 |
|
8 |
Zopim lets you monitor and chat with visitors surfing your store in real-time. Impress them personally and ease them into their purchase.
|
9 |
|
48 |
* Arabic | Bulgarian | Chinese | Croatian | Czech | Danish | Dutch; Flemish | Estonian | Faroese | Finnish | French | Georgian | German | Greek | Hebrew | Hungarian | Icelandic | Indonesian | Italian | Japanese | Korean | Kurdish | Latvian | Lithuanian | Macedonian | Malay | Norwegian Bokmal | Persian | Polish | Portuguese | Romanian | Russian | Serbian | Slovak | Slovenian | Spanish; Castilian | Swedish | Thai | Turkish | Ukranian | Urdu | Vietnamese
|
49 |
|
50 |
== Changelog ==
|
51 |
+
= 1.3.3 =
|
52 |
+
* Fix bug where account deactivates linking but widget still shows up
|
53 |
+
|
54 |
= 1.3.2 =
|
55 |
* Refactored css loading to accommodate older PHP versions
|
56 |
* Included css file
|
zopim.php
CHANGED
@@ -5,7 +5,7 @@ Plugin Name: Zopim Widget
|
|
5 |
Plugin URI: http://www.zopim.com/?iref=wp_plugin
|
6 |
Description: Zopim is an award winning chat solution that helps website owners to engage their visitors and convert customers into fans!
|
7 |
Author: Zopim
|
8 |
-
Version: 1.3.
|
9 |
Author URI: http://www.zopim.com/?iref=wp_plugin
|
10 |
*/
|
11 |
|
@@ -43,7 +43,7 @@ function zopimme() {
|
|
43 |
|
44 |
$code = get_option('zopimCode');
|
45 |
|
46 |
-
if ( ( $code == "" || $code == "zopim" )
|
47 |
|
48 |
// dont show this more than once
|
49 |
if (isset($zopimshown) && $zopimshown == 1) { return; }
|
5 |
Plugin URI: http://www.zopim.com/?iref=wp_plugin
|
6 |
Description: Zopim is an award winning chat solution that helps website owners to engage their visitors and convert customers into fans!
|
7 |
Author: Zopim
|
8 |
+
Version: 1.3.3
|
9 |
Author URI: http://www.zopim.com/?iref=wp_plugin
|
10 |
*/
|
11 |
|
43 |
|
44 |
$code = get_option('zopimCode');
|
45 |
|
46 |
+
if ( ( $code == "" || $code == "zopim" ) || ( isset( $_GET['page'] ) && ! preg_match( "/zopim/", $_GET['page'] ) ) && ( isset( $_GET['page'] ) && ! preg_match( "/zopim/", $_SERVER["SERVER_NAME"] ) ) ) { return; }
|
47 |
|
48 |
// dont show this more than once
|
49 |
if (isset($zopimshown) && $zopimshown == 1) { return; }
|