LiveChat – WP live chat plugin for WordPress - Version 3.6.3

Version Description

  • Connect notice
Download this release

Release Info

Developer livechat
Plugin Icon 128x128 LiveChat – WP live chat plugin for WordPress
Version 3.6.3
Comparing to
See all releases

Code changes from version 3.6.2 to 3.6.3

languages/wp-live-chat-software-for-wordpress.pot CHANGED
@@ -23,6 +23,14 @@ msgstr ""
23
  msgid "Settings"
24
  msgstr ""
25
 
 
 
 
 
 
 
 
 
26
  #: ../plugin_files/helpers/ReviewNoticeHelper.class.php:11
27
  msgid "Do you like LiveChat? Leave us a review and join our LiveChat Knowledge Journey!"
28
  msgstr ""
23
  msgid "Settings"
24
  msgstr ""
25
 
26
+ #: ../plugin_files/helpers/ConnectNoticeHelper.class.php:12
27
+ msgid "Please connect your LiveChat account to start chatting with your customers."
28
+ msgstr ""
29
+
30
+ #: ../plugin_files/helpers/ConnectNoticeHelper.class.php:13
31
+ msgid "Connect"
32
+ msgstr ""
33
+
34
  #: ../plugin_files/helpers/ReviewNoticeHelper.class.php:11
35
  msgid "Do you like LiveChat? Leave us a review and join our LiveChat Knowledge Journey!"
36
  msgstr ""
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.6.2
9
  Text Domain: wp-live-chat-software-for-wordpress
10
  Domain Path: /languages
11
  */
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.6.3
9
  Text Domain: wp-live-chat-software-for-wordpress
10
  Domain Path: /languages
11
  */
plugin_files/LiveChatAdmin.class.php CHANGED
@@ -52,6 +52,10 @@ final class LiveChatAdmin extends LiveChat
52
  add_action('admin_notices', array($this, 'show_review_notice'));
53
  }
54
 
 
 
 
 
55
  add_action('init', array($this, 'load_scripts'));
56
 
57
  add_action('admin_menu', array($this, 'admin_menu'));
@@ -320,6 +324,11 @@ final class LiveChatAdmin extends LiveChat
320
  $this->get_helper('ReviewNotice');
321
  }
322
 
 
 
 
 
 
323
  public function ajax_review_dismiss()
324
  {
325
  update_option('livechat_review_notice_dismissed', true);
52
  add_action('admin_notices', array($this, 'show_review_notice'));
53
  }
54
 
55
+ if(!$this->is_installed() && !(array_key_exists('page', $_GET) && $_GET['page'] === 'livechat_settings')) {
56
+ add_action('admin_notices', array($this, 'show_connect_notice'));
57
+ }
58
+
59
  add_action('init', array($this, 'load_scripts'));
60
 
61
  add_action('admin_menu', array($this, 'admin_menu'));
324
  $this->get_helper('ReviewNotice');
325
  }
326
 
327
+ public function show_connect_notice()
328
+ {
329
+ $this->get_helper('ConnectNotice');
330
+ }
331
+
332
  public function ajax_review_dismiss()
333
  {
334
  update_option('livechat_review_notice_dismissed', true);
plugin_files/helpers/ConnectNoticeHelper.class.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ require_once('LiveChatHelper.class.php');
4
+
5
+ class ConnectNoticeHelper extends LiveChatHelper
6
+ {
7
+ public function render()
8
+ {
9
+ ?>
10
+ <div class="notice notice-info" id="lc-connect-notice">
11
+ <p>
12
+ <?php _e('Please connect your LiveChat account to start chatting with your customers.', 'wp-live-chat-software-for-wordpress'); ?> <a href="admin.php?page=livechat_settings">
13
+ <?php _e('Connect', 'wp-live-chat-software-for-wordpress'); ?> &rarr;
14
+ </a>
15
+ </p>
16
+ </div>
17
+ <?php
18
+ }
19
+ }
readme.txt CHANGED
@@ -1,9 +1,9 @@
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.6.2
5
  Requires PHP: 5.6
6
- Tested up to: 5.0
7
  Requires at least: 3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -307,6 +307,9 @@ For more detailed instructions, go to the [live chat plugin page](https://www.li
307
 
308
  == Changelog ==
309
 
 
 
 
310
  = 3.6.2 =
311
  * Tested up to Wordpress 5.0.
312
  * Removed Disable sounds option.
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.6.3
5
  Requires PHP: 5.6
6
+ Tested up to: 5.0.3
7
  Requires at least: 3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
307
 
308
  == Changelog ==
309
 
310
+ = 3.6.3 =
311
+ * Connect notice
312
+
313
  = 3.6.2 =
314
  * Tested up to Wordpress 5.0.
315
  * Removed Disable sounds option.