Version Description
- 2016-01-04 - Low priority =
- Tested with WordPress 4.4
Download this release
Release Info
Developer | WP-LiveChat |
Plugin | WP Live Chat Support |
Version | 5.0.12 |
Comparing to | |
See all releases |
Code changes from version 5.0.11 to 5.0.12
- readme.txt +4 -1
- wp-live-chat-support.php +6 -3
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: WP-LiveChat, NickDuncan, CodeCabin_, Jarryd Long
|
|
3 |
Donate link: http://www.wp-livechat.com
|
4 |
Tags: live chat, live support, chat plugin, live help, wordpress chat, customer support, chat, chat services, live chat plugin, live support plugin, live chat support plugin, wordpress live chat, wordpress live chat plugin, live chat software, live chat services, chat plugin, support plugin, support, chat software, chat online, visitor chat, chat, free chat, free live chat, customer support, online support, live help, live chat help, chat widget, live chat widget
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2
|
9 |
|
@@ -199,6 +199,9 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
|
|
199 |
|
200 |
== Changelog ==
|
201 |
|
|
|
|
|
|
|
202 |
= 5.0.11 - 2015-10-14 - Low priority =
|
203 |
* Translation strings changed
|
204 |
* PO files updated
|
3 |
Donate link: http://www.wp-livechat.com
|
4 |
Tags: live chat, live support, chat plugin, live help, wordpress chat, customer support, chat, chat services, live chat plugin, live support plugin, live chat support plugin, wordpress live chat, wordpress live chat plugin, live chat software, live chat services, chat plugin, support plugin, support, chat software, chat online, visitor chat, chat, free chat, free live chat, customer support, online support, live help, live chat help, chat widget, live chat widget
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.4
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2
|
9 |
|
199 |
|
200 |
== Changelog ==
|
201 |
|
202 |
+
= 5.0.12 - 2016-01-04 - Low priority =
|
203 |
+
* Tested with WordPress 4.4
|
204 |
+
|
205 |
= 5.0.11 - 2015-10-14 - Low priority =
|
206 |
* Translation strings changed
|
207 |
* PO files updated
|
wp-live-chat-support.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
<?php
|
2 |
/*
|
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: 5.0.
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
Text Domain: wplivechat
|
@@ -11,6 +11,9 @@
|
|
11 |
*/
|
12 |
|
13 |
/*
|
|
|
|
|
|
|
14 |
* 5.0.11 - 2015-10-14 - Low priority
|
15 |
* Translation string changes
|
16 |
*
|
@@ -286,7 +289,7 @@ global $wplc_tblname_chats;
|
|
286 |
global $wplc_tblname_msgs;
|
287 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
288 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
289 |
-
$wplc_version = "5.0.
|
290 |
|
291 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
292 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
1 |
+
<?php
|
2 |
/*
|
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: 5.0.12
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
Text Domain: wplivechat
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
* 5.0.12 - 2015-01-04 - Low priority
|
15 |
+
* Tested with WP 4.4
|
16 |
+
*
|
17 |
* 5.0.11 - 2015-10-14 - Low priority
|
18 |
* Translation string changes
|
19 |
*
|
289 |
global $wplc_tblname_msgs;
|
290 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
291 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
292 |
+
$wplc_version = "5.0.12";
|
293 |
|
294 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
295 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|