Version Description
- Fix. WhatsApp box auto open
Download this release
Release Info
Developer | quadlayers |
Plugin | WhatsApp Chat WP |
Version | 6.1.9 |
Comparing to | |
See all releases |
Code changes from version 6.1.8 to 6.1.9
- readme.txt +4 -1
- wp-whatsapp-chat.php +4 -4
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: whatsapp, whatsapp business, click to chat, whatsapp chat, woocommerce wha
|
|
5 |
Requires at least: 4.6
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 6.0
|
8 |
-
Stable tag: 6.1.
|
9 |
License: GPLv3
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -135,6 +135,9 @@ Don't use: +001-(555)1234567
|
|
135 |
|
136 |
== Changelog ==
|
137 |
|
|
|
|
|
|
|
138 |
= 6.1.8 =
|
139 |
* Fix. WhatsApp premium compatibility
|
140 |
|
5 |
Requires at least: 4.6
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 6.0
|
8 |
+
Stable tag: 6.1.9
|
9 |
License: GPLv3
|
10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
135 |
|
136 |
== Changelog ==
|
137 |
|
138 |
+
= 6.1.9 =
|
139 |
+
* Fix. WhatsApp box auto open
|
140 |
+
|
141 |
= 6.1.8 =
|
142 |
* Fix. WhatsApp premium compatibility
|
143 |
|
wp-whatsapp-chat.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Social Chat
|
5 |
* Description: Social Chat allows your visitors to contact you or your team through WhatsApp chat with a single click.
|
6 |
* Plugin URI: https://quadlayers.com/portfolio/whatsapp-chat/
|
7 |
-
* Version: 6.1.
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
@@ -18,7 +18,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
18 |
}
|
19 |
|
20 |
define( 'QLWAPP_PLUGIN_NAME', 'Social Chat' );
|
21 |
-
define( 'QLWAPP_PLUGIN_VERSION', '6.1.
|
22 |
define( 'QLWAPP_PLUGIN_FILE', __FILE__ );
|
23 |
define( 'QLWAPP_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
|
24 |
define( 'QLWAPP_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
@@ -46,9 +46,9 @@ define( 'QLWAPP_CROSS_INSTALL_URL', 'https://quadlayers.com/portfolio/instagram-
|
|
46 |
if ( ! class_exists( 'QLWAPP' ) ) {
|
47 |
include_once QLWAPP_PLUGIN_DIR . 'includes/qlwapp.php';
|
48 |
}
|
49 |
-
|
50 |
|
51 |
require_once QLWAPP_PLUGIN_DIR . 'compatibility/compatibility.php';
|
52 |
require_once QLWAPP_PLUGIN_DIR . 'includes/quadlayers/widget.php';
|
53 |
require_once QLWAPP_PLUGIN_DIR . 'includes/quadlayers/notices.php';
|
54 |
-
require_once QLWAPP_PLUGIN_DIR . 'includes/quadlayers/links.php';
|
4 |
* Plugin Name: Social Chat
|
5 |
* Description: Social Chat allows your visitors to contact you or your team through WhatsApp chat with a single click.
|
6 |
* Plugin URI: https://quadlayers.com/portfolio/whatsapp-chat/
|
7 |
+
* Version: 6.1.9
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
18 |
}
|
19 |
|
20 |
define( 'QLWAPP_PLUGIN_NAME', 'Social Chat' );
|
21 |
+
define( 'QLWAPP_PLUGIN_VERSION', '6.1.9' );
|
22 |
define( 'QLWAPP_PLUGIN_FILE', __FILE__ );
|
23 |
define( 'QLWAPP_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
|
24 |
define( 'QLWAPP_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
46 |
if ( ! class_exists( 'QLWAPP' ) ) {
|
47 |
include_once QLWAPP_PLUGIN_DIR . 'includes/qlwapp.php';
|
48 |
}
|
49 |
+
// compability
|
50 |
|
51 |
require_once QLWAPP_PLUGIN_DIR . 'compatibility/compatibility.php';
|
52 |
require_once QLWAPP_PLUGIN_DIR . 'includes/quadlayers/widget.php';
|
53 |
require_once QLWAPP_PLUGIN_DIR . 'includes/quadlayers/notices.php';
|
54 |
+
require_once QLWAPP_PLUGIN_DIR . 'includes/quadlayers/links.php';
|