Version Description
- Updated compatibility with PHP 7.1+
Download this release
Release Info
Developer | livechat |
Plugin | LiveChat – WP live chat plugin for WordPress |
Version | 3.5.1 |
Comparing to | |
See all releases |
Code changes from version 3.5.0 to 3.5.1
- livechat.php +1 -1
- plugin_files/LiveChatAdmin.class.php +1 -1
- plugin_files/helpers/SettingsHelper.class.php +1 -1
- readme.txt +4 -1
livechat.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.livechatinc.com/addons/wordpress/
|
|
5 |
Description: Live chat software for live help, online sales and customer support. This plugin allows to quickly install LiveChat on any WordPress website.
|
6 |
Author: LiveChat
|
7 |
Author URI: http://www.livechatinc.com
|
8 |
-
Version: 3.5.
|
9 |
*/
|
10 |
|
11 |
if (is_admin())
|
5 |
Description: Live chat software for live help, online sales and customer support. This plugin allows to quickly install LiveChat on any WordPress website.
|
6 |
Author: LiveChat
|
7 |
Author URI: http://www.livechatinc.com
|
8 |
+
Version: 3.5.1
|
9 |
*/
|
10 |
|
11 |
if (is_admin())
|
plugin_files/LiveChatAdmin.class.php
CHANGED
@@ -24,7 +24,7 @@ final class LiveChatAdmin extends LiveChat
|
|
24 |
{
|
25 |
parent::__construct();
|
26 |
|
27 |
-
if ($_GET['page'] === 'livechat_settings')
|
28 |
add_action('init', array($this, 'load_scripts'));
|
29 |
|
30 |
add_action('admin_menu', array($this, 'admin_menu'));
|
24 |
{
|
25 |
parent::__construct();
|
26 |
|
27 |
+
if (isset($_GET['page']) && $_GET['page'] === 'livechat_settings')
|
28 |
add_action('init', array($this, 'load_scripts'));
|
29 |
|
30 |
add_action('admin_menu', array($this, 'admin_menu'));
|
plugin_files/helpers/SettingsHelper.class.php
CHANGED
@@ -12,7 +12,7 @@ class SettingsHelper extends LiveChatHelper
|
|
12 |
|
13 |
$notification = '';
|
14 |
|
15 |
-
if ($_GET['actionType'] === 'install') {
|
16 |
$notification = '<div class="updated installed">
|
17 |
<p>
|
18 |
LiveChat is now installed on your website!
|
12 |
|
13 |
$notification = '';
|
14 |
|
15 |
+
if (isset($_GET['actionType']) && $_GET['actionType'] === 'install') {
|
16 |
$notification = '<div class="updated installed">
|
17 |
<p>
|
18 |
LiveChat is now installed on your website!
|
readme.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
=== LiveChat - WP live chat plugin for WordPress ===
|
2 |
Contributors: LiveChat
|
3 |
Tags: chat plugin, live chat, live chat plugin, wordpress live chat, wordpress chat, wordpress live chat plugin, wordpress chat plugin, live chat software, live support, help desk, help desk software, online ticketing system, ticketing system, online support, ecommerce chat, chat online, chat software, sales, customer help, customer support, livechat, customer service software, chat, customer service chat, live chat button, live chat support, live chat tool, live chat widget, live support button, live chat solution, online live chat, online chat, wp chat, wp live chat, livechat inc, livechatinc, live chat inc, wp livechat support, smartsupp, smart supp, tidio, jivochat, formilla, tawk, tawkto, tawk.to, facebook, facebook messenger, messenger, facebook live chat, facebook chat, crisp, pure chat, purechat, zendesk, zendesk chat, liveagent, olark, happyfox, reve chat, chatra, provide support, comm100, kayako, zoho, zoho salesiq, userlike, userengage, drift, livehelpnow, live help now, intercom, freshdesk, zendesk, clickdesk, liveperson, live person, bold360, websitealive, website alive, velaro, hubspot, salesforce, zapier, zopim, mailchimp, analytics, google analytics, im chat, slack, casengo, tagove, wisechat, wise chat, mylivechat, my live chat, livezilla, chatrify
|
4 |
-
Stable tag: 3.5.
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 4.9.5
|
7 |
License: GPLv2 or later
|
@@ -268,6 +268,9 @@ For more detailed instructions, go to the [live chat plugin page](https://www.li
|
|
268 |
|
269 |
== Changelog ==
|
270 |
|
|
|
|
|
|
|
271 |
= 3.5.0 =
|
272 |
* Plugin redesign.
|
273 |
* Added new options:
|
1 |
=== LiveChat - WP live chat plugin for WordPress ===
|
2 |
Contributors: LiveChat
|
3 |
Tags: chat plugin, live chat, live chat plugin, wordpress live chat, wordpress chat, wordpress live chat plugin, wordpress chat plugin, live chat software, live support, help desk, help desk software, online ticketing system, ticketing system, online support, ecommerce chat, chat online, chat software, sales, customer help, customer support, livechat, customer service software, chat, customer service chat, live chat button, live chat support, live chat tool, live chat widget, live support button, live chat solution, online live chat, online chat, wp chat, wp live chat, livechat inc, livechatinc, live chat inc, wp livechat support, smartsupp, smart supp, tidio, jivochat, formilla, tawk, tawkto, tawk.to, facebook, facebook messenger, messenger, facebook live chat, facebook chat, crisp, pure chat, purechat, zendesk, zendesk chat, liveagent, olark, happyfox, reve chat, chatra, provide support, comm100, kayako, zoho, zoho salesiq, userlike, userengage, drift, livehelpnow, live help now, intercom, freshdesk, zendesk, clickdesk, liveperson, live person, bold360, websitealive, website alive, velaro, hubspot, salesforce, zapier, zopim, mailchimp, analytics, google analytics, im chat, slack, casengo, tagove, wisechat, wise chat, mylivechat, my live chat, livezilla, chatrify
|
4 |
+
Stable tag: 3.5.1
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 4.9.5
|
7 |
License: GPLv2 or later
|
268 |
|
269 |
== Changelog ==
|
270 |
|
271 |
+
= 3.5.1 =
|
272 |
+
* Updated compatibility with PHP 7.1+
|
273 |
+
|
274 |
= 3.5.0 =
|
275 |
* Plugin redesign.
|
276 |
* Added new options:
|