Version Description
- Fixed plugin "Settings" link
- Changed message after successful installation
Download this release
Release Info
Developer | livechat |
Plugin | LiveChat – WP live chat plugin for WordPress |
Version | 3.2.1 |
Comparing to | |
See all releases |
Code changes from version 3.2.0 to 3.2.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
|
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.2.1
|
9 |
*/
|
10 |
|
11 |
if (is_admin())
|
plugin_files/LiveChatAdmin.class.php
CHANGED
@@ -121,7 +121,7 @@ final class LiveChatAdmin extends LiveChat
|
|
121 |
}
|
122 |
|
123 |
// Settings link
|
124 |
-
add_filter('plugin_action_links', array($this, 'livechat_settings_link'));
|
125 |
}
|
126 |
|
127 |
/**
|
@@ -145,8 +145,13 @@ final class LiveChatAdmin extends LiveChat
|
|
145 |
return $this->changes_saved;
|
146 |
}
|
147 |
|
148 |
-
public function livechat_settings_link($links)
|
149 |
{
|
|
|
|
|
|
|
|
|
|
|
150 |
$settings_link = sprintf('<a href="admin.php?page=livechat_settings">%s</a>', __('Settings'));
|
151 |
array_unshift ($links, $settings_link);
|
152 |
return $links;
|
121 |
}
|
122 |
|
123 |
// Settings link
|
124 |
+
add_filter('plugin_action_links', array($this, 'livechat_settings_link'), 10, 2);
|
125 |
}
|
126 |
|
127 |
/**
|
145 |
return $this->changes_saved;
|
146 |
}
|
147 |
|
148 |
+
public function livechat_settings_link($links, $file)
|
149 |
{
|
150 |
+
if (basename($file) !== 'livechat.php')
|
151 |
+
{
|
152 |
+
return $links;
|
153 |
+
}
|
154 |
+
|
155 |
$settings_link = sprintf('<a href="admin.php?page=livechat_settings">%s</a>', __('Settings'));
|
156 |
array_unshift ($links, $settings_link);
|
157 |
return $links;
|
plugin_files/helpers/TrackingCodeInfoHelper.class.php
CHANGED
@@ -8,7 +8,7 @@ class TrackingCodeInfoHelper extends LiveChatHelper
|
|
8 |
{
|
9 |
if (LiveChat::get_instance()->is_installed())
|
10 |
{
|
11 |
-
return '<div class="updated installed_ok"><p>
|
12 |
}
|
13 |
|
14 |
return '';
|
8 |
{
|
9 |
if (LiveChat::get_instance()->is_installed())
|
10 |
{
|
11 |
+
return '<div class="updated installed_ok"><p>LiveChat is installed properly. Woohoo!</p></div>';
|
12 |
}
|
13 |
|
14 |
return '';
|
readme.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
=== LiveChat ===
|
2 |
Contributors: LiveChat
|
3 |
Tags: live support, live chat, live chat software, online support, ecommerce, increase sales, customer help, customer support, livechat, live support, customer service, plugin, chat
|
4 |
-
Stable tag: 3.2.
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.1.3
|
7 |
|
@@ -28,6 +28,10 @@ Take a tour to see why you need LiveChat on your website: http://www.livechatinc
|
|
28 |
|
29 |
== Changelog ==
|
30 |
|
|
|
|
|
|
|
|
|
31 |
= 3.2.0 =
|
32 |
* Compatibility with new chat window
|
33 |
* Removed "click-to-chat button" configurator (no longer used)
|
1 |
=== LiveChat ===
|
2 |
Contributors: LiveChat
|
3 |
Tags: live support, live chat, live chat software, online support, ecommerce, increase sales, customer help, customer support, livechat, live support, customer service, plugin, chat
|
4 |
+
Stable tag: 3.2.1
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.1.3
|
7 |
|
28 |
|
29 |
== Changelog ==
|
30 |
|
31 |
+
= 3.2.1 =
|
32 |
+
* Fixed plugin "Settings" link
|
33 |
+
* Changed message after successful installation
|
34 |
+
|
35 |
= 3.2.0 =
|
36 |
* Compatibility with new chat window
|
37 |
* Removed "click-to-chat button" configurator (no longer used)
|