Version Description
Hello! We've recently acquired this plugin and included tons of new features.
Download this release
Release Info
Developer | quadlayers |
Plugin | WhatsApp Chat WP |
Version | 4.2.4 |
Comparing to | |
See all releases |
Code changes from version 4.2.3 to 4.2.4
- readme.txt +7 -6
- wp-whatsapp-chat.php +12 -10
readme.txt
CHANGED
@@ -1,12 +1,13 @@
|
|
1 |
-
=== WhatsApp Chat
|
2 |
-
Contributors: quadlayers
|
3 |
-
Tags: button, chat, contact, support, whatsapp, whatsapp chat, whatsapp button, whatsapp widget, click to chat
|
4 |
Donate link: https://quadlayers.com/portfolio/wordpress-whatsapp-chat/
|
|
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 5.1
|
7 |
-
|
8 |
-
|
9 |
-
License
|
|
|
10 |
|
11 |
WhatsApp Chat WP allows your website visitors and customers to contact you or your team through WhatsApp chat with a single click.
|
12 |
|
1 |
+
=== WhatsApp Chat ===
|
2 |
+
Contributors: quadlayers, franmastromarino
|
|
|
3 |
Donate link: https://quadlayers.com/portfolio/wordpress-whatsapp-chat/
|
4 |
+
Tags: whatsapp, button, chat, support, contact, click to chat, directly message whatsapp, floating whatsapp, whatsapp chat, whatsapp support, whatsapp business, messaging, help desk
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 5.1
|
7 |
+
Requires PHP: 5.3
|
8 |
+
Stable tag: 4.2.4
|
9 |
+
License: GPLv2 or later
|
10 |
+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
12 |
WhatsApp Chat WP allows your website visitors and customers to contact you or your team through WhatsApp chat with a single click.
|
13 |
|
wp-whatsapp-chat.php
CHANGED
@@ -1,14 +1,16 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
*
|
9 |
-
*
|
10 |
-
*
|
11 |
-
*
|
|
|
|
|
|
|
12 |
*/
|
13 |
if (!defined('ABSPATH')) {
|
14 |
die('-1');
|
@@ -17,7 +19,7 @@ if (!defined('QLWAPP_PLUGIN_NAME')) {
|
|
17 |
define('QLWAPP_PLUGIN_NAME', 'WhatsApp Chat');
|
18 |
}
|
19 |
if (!defined('QLWAPP_PLUGIN_VERSION')) {
|
20 |
-
define('QLWAPP_PLUGIN_VERSION', '4.2.
|
21 |
}
|
22 |
if (!defined('QLWAPP_PLUGIN_FILE')) {
|
23 |
define('QLWAPP_PLUGIN_FILE', __FILE__);
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
+
*
|
4 |
+
* Plugin Name: WhatsApp Chat
|
5 |
+
* Plugin URI: https://quadlayers.com/portfolio/wordpress-whatsapp-chat/
|
6 |
+
* Description: WhatsApp Chat allows your visitors to contact you or your team through WhatsApp chat with a single click.
|
7 |
+
* Version: 4.2.4
|
8 |
+
* Author: WhatsApp Chat
|
9 |
+
* Author URI: https://quadlayers.com
|
10 |
+
* License: GPL-2.0+
|
11 |
+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
12 |
+
* Text Domain: qlwapp
|
13 |
+
* Domain Path: /languages
|
14 |
*/
|
15 |
if (!defined('ABSPATH')) {
|
16 |
die('-1');
|
19 |
define('QLWAPP_PLUGIN_NAME', 'WhatsApp Chat');
|
20 |
}
|
21 |
if (!defined('QLWAPP_PLUGIN_VERSION')) {
|
22 |
+
define('QLWAPP_PLUGIN_VERSION', '4.2.4');
|
23 |
}
|
24 |
if (!defined('QLWAPP_PLUGIN_FILE')) {
|
25 |
define('QLWAPP_PLUGIN_FILE', __FILE__);
|