LiveChat – WP live chat plugin for WordPress - Version 3.4.1

Version Description

  • Updated readme.txt file, checked compatibility to Wordpress 4.8.1, small plugin js/css fixes.
Download this release

Release Info

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

Code changes from version 3.2.14 to 3.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.2.14
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.4.1
9
  */
10
 
11
  if (is_admin())
plugin_files/LiveChatAdmin.class.php CHANGED
@@ -85,8 +85,8 @@ final class LiveChatAdmin extends LiveChat
85
 
86
  public function load_scripts()
87
  {
88
- wp_enqueue_script('livechat', $this->get_plugin_url().'/js/livechat.js', 'jquery', $this->get_plugin_version(), true);
89
- wp_enqueue_style('livechat', $this->get_plugin_url().'/css/livechat.css', false, $this->get_plugin_version());
90
  }
91
 
92
  public function admin_menu()
@@ -97,7 +97,7 @@ final class LiveChatAdmin extends LiveChat
97
  'administrator',
98
  'livechat',
99
  array($this, 'livechat_settings_page'),
100
- $this->get_plugin_url().'/images/favicon.png'
101
  );
102
 
103
  add_submenu_page(
85
 
86
  public function load_scripts()
87
  {
88
+ wp_enqueue_script('livechat', $this->get_plugin_url().'js/livechat.js', 'jquery', $this->get_plugin_version(), true);
89
+ wp_enqueue_style('livechat', $this->get_plugin_url().'css/livechat.css', false, $this->get_plugin_version());
90
  }
91
 
92
  public function admin_menu()
97
  'administrator',
98
  'livechat',
99
  array($this, 'livechat_settings_page'),
100
+ $this->get_plugin_url().'images/favicon.png'
101
  );
102
 
103
  add_submenu_page(
plugin_files/helpers/SettingsHelper.class.php CHANGED
@@ -11,7 +11,7 @@ class SettingsHelper extends LiveChatHelper
11
  <div class="wrap">
12
 
13
  <div id="lc_logo">
14
- <img src="<?php echo LiveChat::get_instance()->get_plugin_url(); ?>/images/logo.png" />
15
  <span>for Wordpress</span>
16
  </div>
17
  <div class="clear"></div>
@@ -85,8 +85,7 @@ LiveChat::get_instance()->get_helper('TrackingCodeInfo');
85
  <div class="postbox_content">
86
 
87
  <?php
88
- global $current_user;
89
- get_currentuserinfo();
90
 
91
  $fullname = $current_user->user_firstname.' '.$current_user->user_lastname;
92
  $fullname = trim($fullname);
11
  <div class="wrap">
12
 
13
  <div id="lc_logo">
14
+ <img src="<?php echo LiveChat::get_instance()->get_plugin_url(); ?>images/logo.png" />
15
  <span>for Wordpress</span>
16
  </div>
17
  <div class="clear"></div>
85
  <div class="postbox_content">
86
 
87
  <?php
88
+ $current_user = wp_get_current_user();
 
89
 
90
  $fullname = $current_user->user_firstname.' '.$current_user->user_lastname;
91
  $fullname = trim($fullname);
readme.txt CHANGED
@@ -1,25 +1,67 @@
1
  === LiveChat - WP live chat software for Wordpress ===
2
  Contributors: LiveChat
3
  Tags: live support, live chat, live chat software, help desk, help desk software, online ticketing system, ticketing system, online support, ecommerce chat, sales, customer help, customer support, livechat, live support, customer service software, chat plugin, chat, customer service chat, live chat button, live chat plugin, live chat support, live chat tool, live chat widget, live support, live support button, live chat solution
4
-
5
- Stable tag: 3.2.14
6
- Requires at least: 2.8
7
- Tested up to: 4.4.1
8
 
9
  Live chat and help desk software plugin for Wordpress. Add LiveChat (live chat and help desk software) to your Wordpress.
10
 
11
  == Description ==
12
 
13
- LiveChat - live chat software and help desk software for customer service. Live chat allows website visitors to contact you in real-time. Help desk software is used to online visitors find what they need before they leave your site.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
- Try LiveChat free for 30 days! Sign up for our live chat here: https://www.livechatinc.com/signup/
16
 
17
- Take a tour to see why you need live chat software on your website: http://www.livechatinc.com/why-livechat/
18
 
19
- ——-
20
 
21
- Product requires active LiveChat subscription after 30 days of free trial.
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
  == Installation ==
25
 
@@ -42,6 +84,18 @@ Product requires active LiveChat subscription after 30 days of free trial.
42
 
43
  == Changelog ==
44
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  = 3.2.14 =
46
  * Updated readme.txt file, checked compatibility to Wordpress 4.4.1
47
 
1
  === LiveChat - WP live chat software for Wordpress ===
2
  Contributors: LiveChat
3
  Tags: live support, live chat, live chat software, help desk, help desk software, online ticketing system, ticketing system, online support, ecommerce chat, sales, customer help, customer support, livechat, live support, customer service software, chat plugin, chat, customer service chat, live chat button, live chat plugin, live chat support, live chat tool, live chat widget, live support, live support button, live chat solution
4
+ Stable tag: 3.4.1
5
+ Requires at least: 3.4
6
+ Tested up to: 4.8.1
 
7
 
8
  Live chat and help desk software plugin for Wordpress. Add LiveChat (live chat and help desk software) to your Wordpress.
9
 
10
  == Description ==
11
 
12
+ Looking to add a live chat plugin to your Wordpress website? LiveChat is a live chat app that enables its users to easily connect and communicate with their on-site visitors and customers. Chat operators can utilize LiveChat to instantly help customers, answer queries, and make the customer experience better. From answering support queries to onboarding new customers, LiveChat chat plugin can be used to facilitate every aspect of running a business.
13
+
14
+ LiveChat comes with a comprehensive set of features, including proactive chat invitations - so chat operators can automatically send personalized messages to appear based on specified conditions, such as the number of visited pages or time spent on the website. Other features include real time monitoring, file sharing, and advanced analytics. It has a clean design and is highly customizable, allowing to make the live chat window fit your brand.
15
+
16
+ In addition to live chat support, LiveChat also offers a built-in ticketing system to provide 24/7 customer service to customers. That being said, whenever there are no chat operators available, the chat widget is replaced by a ticket form so that customers can still contact you with their questions.
17
+
18
+ From email marketing to social, LiveChat integrates seamlessly with a range of popular third party apps and services. These include help desk software Zendesk, Freshdesk, customer relationship management apps (CRM) HubSpot, Salesforce and social media platforms Facebook or Twitter.
19
+
20
+ https://www.youtube.com/watch?v=Yf0NkRSkFRE
21
+
22
+ == Usage ==
23
+
24
+ With the LiveChat chat plugin for Wordpress, you can add live chat to every page of your website, including the checkout in no time. To answer chats, chat operators have to be logged into one of our apps - web based or desktop. There are also applications for mobile devices - iPhone, iPad and Android.
25
+
26
+ == What is LiveChat for Wordpress? ==
27
+
28
+ If you run a website, and you are serious about your business then using live chat is no brainer. Live chat plugin for Wordpress adds a live chat widget to the bottom of your website that allows visitors to chat to you in real time. Live chat software is perfect for businesses of all sizes, enabling them to close more sales and improve customer satisfaction scores.
29
+
30
+ == Requirements ==
31
+
32
+ While LiveChat plugin for Wordpress is free, you need a subscription of LiveChat to use it. For an overview of available plans and their cost navigate to [LiveChat pricing](https://www.livechatinc.com/pricing). There’s a 30-day trial to test all of the features. No credit card, no commitments.
33
+
34
+ [Sign up for our LiveChat here.](https://www.livechatinc.com/signup/?utm_source=wordpress.org&utm_medium=integration&utm_campaign=WordpressIntegration)
35
+
36
+ == Frequently Asked Questions ==
37
 
38
+ = Do you offer a free trial? =
39
 
40
+ Yes, you can test all of the features for 30 days. [Sign up for free here.](https://www.livechatinc.com/signup/?utm_source=wordpress.org&utm_medium=integration&utm_campaign=WordpressIntegration)
41
 
42
+ = Are there any limitations during the trial period? =
43
 
44
+ No, during the 30-day trial, by default, you will be able to test all of the features in the Team plan.
45
 
46
+ = Do I need to be logged in to be available for chats? =
47
+
48
+ Yes, you need to stay online to allow customers to contact you. If no one is available, your chat window will be shown as a ticket form.
49
+
50
+ = Is there a limit to the number of chats I can take? =
51
+
52
+ No, you can handle an unlimited number of live chats with any number of customers.
53
+
54
+ = Is the chat window customizable? =
55
+
56
+ Yes, each part of the chat window can be customized - company logo, chat theme and more.
57
+
58
+ = Which languages does LiveChat support? =
59
+
60
+ Short answer: LiveChat supports 43 languages. Long answer: English, Spanish, French, Chinese, Portuguese, Indonesian, Thai, Vietnamese (…).
61
+
62
+ = Which languages does LiveChat support? =
63
+
64
+ Feel free to start a chat with us – we are available 24/7/365!
65
 
66
  == Installation ==
67
 
84
 
85
  == Changelog ==
86
 
87
+ = 3.4.1 =
88
+ * Updated readme.txt file, checked compatibility to Wordpress 4.8.1, small plugin js/css fixes.
89
+
90
+ = 3.4 =
91
+ * Updated readme.txt file, checked compatibility to Wordpress 4.7.3
92
+
93
+ = 3.3.1 =
94
+ * Updated readme.txt file
95
+
96
+ = 3.3 =
97
+ * get_currentuserinfo function deprecated in WordPress 4.5, replaced to wp_get_current_user function
98
+
99
  = 3.2.14 =
100
  * Updated readme.txt file, checked compatibility to Wordpress 4.4.1
101