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.6.2 |
Comparing to | |
See all releases |
Code changes from version 4.6.1 to 4.6.2
- changelog.txt +3 -0
- includes/backend.php +2 -2
- includes/controllers/DisplayController.php +1 -1
- includes/view/backend/pages/welcome.php +1 -1
- readme.txt +1 -1
- uninstall.php +3 -4
- wp-whatsapp-chat.php +2 -2
- wpml-config.xml +6 -24
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= 4.6.1 =
|
2 |
* Fix. save entries in display contact
|
3 |
* Fix. save taxonomies in display contact
|
1 |
+
= 4.6.2 =
|
2 |
+
* Fix. delete db options on plugin uninstall
|
3 |
+
|
4 |
= 4.6.1 =
|
5 |
* Fix. save entries in display contact
|
6 |
* Fix. save taxonomies in display contact
|
includes/backend.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
class
|
4 |
|
5 |
protected static $instance;
|
6 |
|
@@ -72,5 +72,5 @@ class QLWAPP_Admin {
|
|
72 |
|
73 |
}
|
74 |
|
75 |
-
|
76 |
|
1 |
<?php
|
2 |
|
3 |
+
class QLWAPP_Backend {
|
4 |
|
5 |
protected static $instance;
|
6 |
|
72 |
|
73 |
}
|
74 |
|
75 |
+
QLWAPP_Backend::instance();
|
76 |
|
includes/controllers/DisplayController.php
CHANGED
@@ -51,7 +51,7 @@ class QLWAPP_Display_Controller extends QLWAPP_Controller {
|
|
51 |
|
52 |
if (!empty($_REQUEST) && check_admin_referer('qlwapp_get_posts', 'nonce')) {
|
53 |
|
54 |
-
$data = array('all' => esc_html__('All
|
55 |
|
56 |
$args = array(
|
57 |
'post_type' => sanitize_key($_REQUEST['name']),
|
51 |
|
52 |
if (!empty($_REQUEST) && check_admin_referer('qlwapp_get_posts', 'nonce')) {
|
53 |
|
54 |
+
$data = array('all' => esc_html__('All', 'wp-whatsapp-chat'));
|
55 |
|
56 |
$args = array(
|
57 |
'post_type' => sanitize_key($_REQUEST['name']),
|
includes/view/backend/pages/welcome.php
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<div class="wrap about-wrap full-width-layout
|
2 |
<div class="has-2-columns is-wider-left" style="max-width: 100%">
|
3 |
<div class="column">
|
4 |
<div class="welcome-header">
|
1 |
+
<div class="wrap about-wrap full-width-layout">
|
2 |
<div class="has-2-columns is-wider-left" style="max-width: 100%">
|
3 |
<div class="column">
|
4 |
<div class="welcome-header">
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://quadlayers.com/portfolio/wordpress-whatsapp-chat/
|
|
4 |
Tags: whatsapp, whatsapp chat, whatsapp business, whatsapp support, click to chat, whatsapp group, directly message whatsapp, floating whatsapp, whatsapp message, help desk
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 5.3.2
|
7 |
-
Stable tag: 4.6.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
4 |
Tags: whatsapp, whatsapp chat, whatsapp business, whatsapp support, click to chat, whatsapp group, directly message whatsapp, floating whatsapp, whatsapp message, help desk
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 5.3.2
|
7 |
+
Stable tag: 4.6.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
uninstall.php
CHANGED
@@ -5,7 +5,6 @@ if (!defined('WP_UNINSTALL_PLUGIN')) {
|
|
5 |
}
|
6 |
|
7 |
if (!is_multisite()) {
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
delete_user_meta(get_current_user_id(), 'qlwapp-user-rating');
|
5 |
}
|
6 |
|
7 |
if (!is_multisite()) {
|
8 |
+
delete_user_meta(get_current_user_id(), 'qlwapp-user-rating');
|
9 |
+
delete_option('qlwapp');
|
10 |
+
}
|
|
wp-whatsapp-chat.php
CHANGED
@@ -4,7 +4,7 @@
|
|
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.6.
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPL-2.0+
|
@@ -17,7 +17,7 @@ if (!defined('ABSPATH')) {
|
|
17 |
}
|
18 |
|
19 |
define('QLWAPP_PLUGIN_NAME', 'WhatsApp Chat');
|
20 |
-
define('QLWAPP_PLUGIN_VERSION', '4.6.
|
21 |
define('QLWAPP_PLUGIN_FILE', __FILE__);
|
22 |
define('QLWAPP_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR);
|
23 |
define('QLWAPP_PREFIX', 'qlwapp');
|
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.6.2
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPL-2.0+
|
17 |
}
|
18 |
|
19 |
define('QLWAPP_PLUGIN_NAME', 'WhatsApp Chat');
|
20 |
+
define('QLWAPP_PLUGIN_VERSION', '4.6.2');
|
21 |
define('QLWAPP_PLUGIN_FILE', __FILE__);
|
22 |
define('QLWAPP_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR);
|
23 |
define('QLWAPP_PREFIX', 'qlwapp');
|
wpml-config.xml
CHANGED
@@ -1,25 +1,7 @@
|
|
1 |
<wpml-config>
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
</key>
|
9 |
-
<key name="button">
|
10 |
-
<key name="text"></key>
|
11 |
-
<key name="phone"></key>
|
12 |
-
</key>
|
13 |
-
<key name="user">
|
14 |
-
<key name="message"></key>
|
15 |
-
</key>
|
16 |
-
<key name="contacts">
|
17 |
-
<key name="*">
|
18 |
-
<key name="label"></key>
|
19 |
-
<key name="phone"></key>
|
20 |
-
<key name="message"></key>
|
21 |
-
</key>
|
22 |
-
</key>
|
23 |
-
</key>
|
24 |
-
</admin-texts>
|
25 |
-
</wpml-config>
|
1 |
<wpml-config>
|
2 |
+
<admin-texts>
|
3 |
+
<key name="qlwcdc_add_archive_text_content"/>
|
4 |
+
<key name="qlwcdc_add_product_text_content"/>
|
5 |
+
<key name="qlwcdc_add_product_quick_purchase_text"/>
|
6 |
+
</admin-texts>
|
7 |
+
</wpml-config>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|