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.7 |
Comparing to | |
See all releases |
Code changes from version 4.6.6 to 4.6.7
- includes/view/backend/pages/suggestions.php +6 -3
- readme.txt +4 -4
- wp-whatsapp-chat.php +7 -7
includes/view/backend/pages/suggestions.php
CHANGED
@@ -1,10 +1,13 @@
|
|
1 |
<style>
|
2 |
@media screen and (max-width: 2299px) and (min-width: 1600px) {
|
|
|
|
|
|
|
|
|
|
|
3 |
.plugin-card {
|
4 |
-
width: 48%;
|
5 |
-
width: calc(50% - 16px);
|
6 |
margin: 8px !important;
|
7 |
-
|
8 |
}
|
9 |
}
|
10 |
</style>
|
1 |
<style>
|
2 |
@media screen and (max-width: 2299px) and (min-width: 1600px) {
|
3 |
+
|
4 |
+
#the-list {
|
5 |
+
display: flex;
|
6 |
+
flex-wrap: wrap;
|
7 |
+
}
|
8 |
.plugin-card {
|
|
|
|
|
9 |
margin: 8px !important;
|
10 |
+
width: calc(50% - 4px - 16px)!important;
|
11 |
}
|
12 |
}
|
13 |
</style>
|
readme.txt
CHANGED
@@ -3,10 +3,10 @@ Contributors: quadlayers
|
|
3 |
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.
|
7 |
-
Stable tag: 4.6.
|
8 |
-
License:
|
9 |
-
License URI:
|
10 |
|
11 |
WhatsApp Chat allows your users to contact you through WhatsApp chat with a single click.
|
12 |
|
3 |
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.2
|
7 |
+
Stable tag: 4.6.7
|
8 |
+
License: GPLv3
|
9 |
+
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
WhatsApp Chat allows your users to contact you through WhatsApp chat with a single click.
|
12 |
|
wp-whatsapp-chat.php
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Plugin Name:
|
5 |
-
* Description:
|
6 |
* Plugin URI: https://quadlayers.com/portfolio/whatsapp-chat/
|
7 |
-
* Version: 4.6.
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
-
* License:
|
11 |
-
* License URI:
|
12 |
* Text Domain: wp-whatsapp-chat
|
13 |
* Domain Path: /languages
|
14 |
*/
|
@@ -16,8 +16,8 @@ if (!defined('ABSPATH')) {
|
|
16 |
die('-1');
|
17 |
}
|
18 |
|
19 |
-
define('QLWAPP_PLUGIN_NAME', '
|
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');
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Plugin Name: WP 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: 4.6.7
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
+
* License: GPLv3
|
11 |
+
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
12 |
* Text Domain: wp-whatsapp-chat
|
13 |
* Domain Path: /languages
|
14 |
*/
|
16 |
die('-1');
|
17 |
}
|
18 |
|
19 |
+
define('QLWAPP_PLUGIN_NAME', 'WP Social Chat');
|
20 |
+
define('QLWAPP_PLUGIN_VERSION', '4.6.7');
|
21 |
define('QLWAPP_PLUGIN_FILE', __FILE__);
|
22 |
define('QLWAPP_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR);
|
23 |
define('QLWAPP_PREFIX', 'qlwapp');
|