Version Description
2015-05-28 - Medium Priority = * Bug Fix: Fixed PHP error
Download this release
Release Info
Developer | WP-LiveChat |
Plugin | WP Live Chat Support |
Version | 4.3.2 |
Comparing to | |
See all releases |
Code changes from version 4.3.1 to 4.3.2
- readme.txt +3 -0
- wp-live-chat-support.php +12 -4
readme.txt
CHANGED
@@ -174,6 +174,9 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
|
|
174 |
|
175 |
== Changelog ==
|
176 |
|
|
|
|
|
|
|
177 |
= 4.3.1 2015-05-22 - Low Priority =
|
178 |
* New Translations:
|
179 |
* Finnish (Thank you Arttu Piipponen)
|
174 |
|
175 |
== Changelog ==
|
176 |
|
177 |
+
= 4.3.2 2015-05-28 - Medium Priority =
|
178 |
+
* Bug Fix: Fixed PHP error
|
179 |
+
|
180 |
= 4.3.1 2015-05-22 - Low Priority =
|
181 |
* New Translations:
|
182 |
* Finnish (Thank you Arttu Piipponen)
|
wp-live-chat-support.php
CHANGED
@@ -3,13 +3,16 @@
|
|
3 |
Plugin Name: WP Live Chat Support
|
4 |
Plugin URI: http://www.wp-livechat.com
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
|
6 |
-
Version: 4.3.
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
-
/* 4.3.
|
|
|
|
|
|
|
13 |
* New Translations:
|
14 |
* Finnish (Thank you Arttu Piipponen)
|
15 |
*
|
@@ -190,7 +193,7 @@ global $wplc_tblname_chats;
|
|
190 |
global $wplc_tblname_msgs;
|
191 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
192 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
193 |
-
$wplc_version = "4.3.
|
194 |
|
195 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
196 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
@@ -368,9 +371,14 @@ function wplc_draw_user_box() {
|
|
368 |
wp_enqueue_script('jquery');
|
369 |
wp_enqueue_script('jquery-ui-core');
|
370 |
wp_enqueue_script('jquery-ui-draggable');
|
371 |
-
if(wplc_display_chat_contents
|
|
|
|
|
|
|
|
|
372 |
wplc_output_box();
|
373 |
}
|
|
|
374 |
}
|
375 |
|
376 |
function wplc_output_box() {
|
3 |
Plugin Name: WP Live Chat Support
|
4 |
Plugin URI: http://www.wp-livechat.com
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
|
6 |
+
Version: 4.3.2
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
+
/* 4.3.2 2015-05-28 - Medium Priority
|
13 |
+
* Bug Fix: Fixed PHP error
|
14 |
+
*
|
15 |
+
* 4.3.1 2015-05-22 - Low Priority
|
16 |
* New Translations:
|
17 |
* Finnish (Thank you Arttu Piipponen)
|
18 |
*
|
193 |
global $wplc_tblname_msgs;
|
194 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
195 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
196 |
+
$wplc_version = "4.3.02";
|
197 |
|
198 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
199 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
371 |
wp_enqueue_script('jquery');
|
372 |
wp_enqueue_script('jquery-ui-core');
|
373 |
wp_enqueue_script('jquery-ui-draggable');
|
374 |
+
if(function_exists('wplc_display_chat_contents')){
|
375 |
+
if(wplc_display_chat_contents() >= 1){
|
376 |
+
wplc_output_box();
|
377 |
+
}
|
378 |
+
} else {
|
379 |
wplc_output_box();
|
380 |
}
|
381 |
+
|
382 |
}
|
383 |
|
384 |
function wplc_output_box() {
|