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.5 |
Comparing to | |
See all releases |
Code changes from version 4.6.4 to 4.6.5
- changelog.txt +3 -0
- includes/models/Suggestions.php +6 -4
- readme.txt +1 -1
- wp-whatsapp-chat.php +3 -3
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= 4.6.4 =
|
2 |
* Fix. missing alt images
|
3 |
|
1 |
+
= 4.6.5 =
|
2 |
+
* Fix. suggestion update
|
3 |
+
|
4 |
= 4.6.4 =
|
5 |
* Fix. missing alt images
|
6 |
|
includes/models/Suggestions.php
CHANGED
@@ -5,9 +5,9 @@ require_once( ABSPATH . 'wp-admin/includes/class-wp-plugin-install-list-table.ph
|
|
5 |
class QLWAPP_Suggestions_List_Table extends WP_Plugin_Install_List_Table {
|
6 |
|
7 |
public $promote = array(
|
8 |
-
'wp-
|
9 |
-
'wp-whatsapp-chat',
|
10 |
'insta-gallery',
|
|
|
11 |
'quadmenu',
|
12 |
'woocommerce-checkout-manager',
|
13 |
'woocommerce-direct-checkout',
|
@@ -66,7 +66,9 @@ class QLWAPP_Suggestions_List_Table extends WP_Plugin_Install_List_Table {
|
|
66 |
|
67 |
public function get_plugins() {
|
68 |
|
69 |
-
$
|
|
|
|
|
70 |
|
71 |
if ($plugins === false) {
|
72 |
|
@@ -82,7 +84,7 @@ class QLWAPP_Suggestions_List_Table extends WP_Plugin_Install_List_Table {
|
|
82 |
|
83 |
$plugins = $this->remove_plugins($api->plugins);
|
84 |
|
85 |
-
set_transient(
|
86 |
}
|
87 |
}
|
88 |
|
5 |
class QLWAPP_Suggestions_List_Table extends WP_Plugin_Install_List_Table {
|
6 |
|
7 |
public $promote = array(
|
8 |
+
'wp-tiktok-feed',
|
|
|
9 |
'insta-gallery',
|
10 |
+
'wp-menu-icons',
|
11 |
'quadmenu',
|
12 |
'woocommerce-checkout-manager',
|
13 |
'woocommerce-direct-checkout',
|
66 |
|
67 |
public function get_plugins() {
|
68 |
|
69 |
+
$tk = QLWAPP_PREFIX . '_suggestions_plugins';
|
70 |
+
|
71 |
+
$plugins = get_transient($tk);
|
72 |
|
73 |
if ($plugins === false) {
|
74 |
|
84 |
|
85 |
$plugins = $this->remove_plugins($api->plugins);
|
86 |
|
87 |
+
set_transient($tk, $plugins, 24 * HOUR_IN_SECONDS);
|
88 |
}
|
89 |
}
|
90 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://quadlayers.com/portfolio/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.4.0
|
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.4.0
|
7 |
+
Stable tag: 4.6.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
wp-whatsapp-chat.php
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
|
3 |
/**
|
4 |
* Plugin Name: WhatsApp Chat
|
5 |
-
* Plugin URI: https://quadlayers.com/portfolio/whatsapp-chat/
|
6 |
* Description: WhatsApp Chat allows your visitors to contact you or your team through WhatsApp chat with a single click.
|
7 |
-
*
|
|
|
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');
|
2 |
|
3 |
/**
|
4 |
* Plugin Name: WhatsApp Chat
|
|
|
5 |
* Description: WhatsApp 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: 4.6.5
|
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.5');
|
21 |
define('QLWAPP_PLUGIN_FILE', __FILE__);
|
22 |
define('QLWAPP_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR);
|
23 |
define('QLWAPP_PREFIX', 'qlwapp');
|