Version Description
PHP notice fixed
Download this release
Release Info
Developer | galdub |
Plugin | Floating Chat Widget: Contact Chat Icons, Telegram Chat, Line, WeChat, Email, SMS, Call Button – Chaty |
Version | 2.5.2 |
Comparing to | |
See all releases |
Code changes from version 2.5.1 to 2.5.2
- cht-icons.php +2 -2
- readme.txt +5 -2
- views/widget.php +1 -1
cht-icons.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
Author URI: https://premio.io/downloads/chaty/
|
8 |
Text Domain: chaty
|
9 |
Domain Path: /languages
|
10 |
-
Version: 2.5.
|
11 |
License: GPL2
|
12 |
*/
|
13 |
|
@@ -27,7 +27,7 @@ define('CHT_INC', CHT_DIR . '/includes');
|
|
27 |
define('CHT_PRO_URL', admin_url("admin.php?page=chaty-app-upgrade"));
|
28 |
define('CHT_PLUGIN_URL', plugin_dir_url(__FILE__));
|
29 |
define('CHT_PLUGIN_BASE', plugin_basename(CHT_FILE));
|
30 |
-
define('CHT_VERSION', "2.5.
|
31 |
|
32 |
if (!function_exists('wp_doing_ajax')) {
|
33 |
function wp_doing_ajax()
|
7 |
Author URI: https://premio.io/downloads/chaty/
|
8 |
Text Domain: chaty
|
9 |
Domain Path: /languages
|
10 |
+
Version: 2.5.2
|
11 |
License: GPL2
|
12 |
*/
|
13 |
|
27 |
define('CHT_PRO_URL', admin_url("admin.php?page=chaty-app-upgrade"));
|
28 |
define('CHT_PLUGIN_URL', plugin_dir_url(__FILE__));
|
29 |
define('CHT_PLUGIN_BASE', plugin_basename(CHT_FILE));
|
30 |
+
define('CHT_VERSION', "2.5.2");
|
31 |
|
32 |
if (!function_exists('wp_doing_ajax')) {
|
33 |
function wp_doing_ajax()
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: galdub, tomeraharon, premio
|
|
3 |
Tags: whatsapp, facebook messenger, click to chat, chat, chat button, call now button, messenger, whatsapp button, chat icon, messenger chat icon, contact button, click to call
|
4 |
Requires at least: 3.1
|
5 |
Tested up to: 5.4
|
6 |
-
Stable tag: 2.5.
|
7 |
Plugin URI: https://premio.io/downloads/chaty/
|
8 |
|
9 |
Let your visitors contact you via Facebook Messenger, Whatsapp, Telegram, Viber, Email, Phone call, SMS and more with customizable chat & call buttons
|
@@ -216,8 +216,11 @@ Yes! You can even decide what chat buttons will show up on each device (desktop/
|
|
216 |
|
217 |
== Changelog ==
|
218 |
|
|
|
|
|
|
|
219 |
= 2.5.1 =
|
220 |
-
|
221 |
|
222 |
= 2.5 =
|
223 |
Launch Chaty chat button using this JavaScript function whenever you want: launch_chaty();
|
3 |
Tags: whatsapp, facebook messenger, click to chat, chat, chat button, call now button, messenger, whatsapp button, chat icon, messenger chat icon, contact button, click to call
|
4 |
Requires at least: 3.1
|
5 |
Tested up to: 5.4
|
6 |
+
Stable tag: 2.5.2
|
7 |
Plugin URI: https://premio.io/downloads/chaty/
|
8 |
|
9 |
Let your visitors contact you via Facebook Messenger, Whatsapp, Telegram, Viber, Email, Phone call, SMS and more with customizable chat & call buttons
|
216 |
|
217 |
== Changelog ==
|
218 |
|
219 |
+
= 2.5.2 =
|
220 |
+
PHP notice fixed
|
221 |
+
|
222 |
= 2.5.1 =
|
223 |
+
Show your chat buttons vertical mode or horizontal mode. Also, Make your custom channels act as an existing channel. For example, you can create two WhatsApp buttons or two Facebook Messenger buttons
|
224 |
|
225 |
= 2.5 =
|
226 |
Launch Chaty chat button using this JavaScript function whenever you want: launch_chaty();
|
views/widget.php
CHANGED
@@ -102,7 +102,7 @@ if(!empty($display_rules)) {
|
|
102 |
$display_conditions = 1;
|
103 |
}
|
104 |
|
105 |
-
$mode = get_option("chaty_icons_view"
|
106 |
$mode = empty($mode) ? "vertical" : $mode;
|
107 |
|
108 |
/* widget setting array */
|
102 |
$display_conditions = 1;
|
103 |
}
|
104 |
|
105 |
+
$mode = get_option("chaty_icons_view");
|
106 |
$mode = empty($mode) ? "vertical" : $mode;
|
107 |
|
108 |
/* widget setting array */
|