Version Description
- CSS fixes.
- Bugfix: Fixed issue loading tables crated from Forminator. Other small bug fixes and stability improvements.
Download this release
Release Info
Developer | wpDataTables |
Plugin | wpDataTables Lite |
Version | 2.1.43 |
Comparing to | |
See all releases |
Code changes from version 2.1.42 to 2.1.43
- assets/css/admin/admin.css +7 -0
- assets/css/admin/lite-vs-premium.css +1 -0
- assets/css/admin/promo.css +135 -0
- assets/img/promo/all-licenses.png +0 -0
- assets/img/promo/background.png +0 -0
- assets/img/promo/exclusive-offer.png +0 -0
- assets/img/promo/logo-new-promo.png +0 -0
- assets/img/promo/promo-discounts.png +0 -0
- config/config.inc.php +1 -1
- controllers/wdt_admin.php +5 -3
- controllers/wdt_functions.php +12 -6
- readme.txt +6 -1
- source/class.wpdatatable.php +1 -1
- templates/admin/common/promo.inc.php +12 -194
- templates/admin/dashboard/dashboard.inc.php +1 -1
- wpdatatables.php +1 -1
assets/css/admin/admin.css
CHANGED
@@ -1606,6 +1606,13 @@ div.mce-widget button i.mce-i-wpdatachart{
|
|
1606 |
display: none !important;
|
1607 |
}
|
1608 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1609 |
@media only screen and (max-width : 480px) {
|
1610 |
.wpdt-c .wdt-datatables-admin-wrap .column-settings-panel .wdt-column-calc-total-block,
|
1611 |
.wpdt-c .wdt-datatables-admin-wrap .column-settings-panel .wdt-column-calc-avg-block,
|
1606 |
display: none !important;
|
1607 |
}
|
1608 |
}
|
1609 |
+
|
1610 |
+
@media(min-width: 625px) and (max-width: 960px) {
|
1611 |
+
.tms-store-col:nth-child(2) {
|
1612 |
+
background: none !important;
|
1613 |
+
}
|
1614 |
+
}
|
1615 |
+
|
1616 |
@media only screen and (max-width : 480px) {
|
1617 |
.wpdt-c .wdt-datatables-admin-wrap .column-settings-panel .wdt-column-calc-total-block,
|
1618 |
.wpdt-c .wdt-datatables-admin-wrap .column-settings-panel .wdt-column-calc-avg-block,
|
assets/css/admin/lite-vs-premium.css
CHANGED
@@ -197,6 +197,7 @@
|
|
197 |
top: 12px !important;
|
198 |
}
|
199 |
}
|
|
|
200 |
@media (max-width: 480px) {
|
201 |
.wdt-datatables-admin-wrap .wdt-lite-vs-premium-card .card-header.wdt-admin-card-header {
|
202 |
background: #ffffff !important;
|
197 |
top: 12px !important;
|
198 |
}
|
199 |
}
|
200 |
+
|
201 |
@media (max-width: 480px) {
|
202 |
.wdt-datatables-admin-wrap .wdt-lite-vs-premium-card .card-header.wdt-admin-card-header {
|
203 |
background: #ffffff !important;
|
assets/css/admin/promo.css
ADDED
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;700&family=Kaushan+Script&display=swap');
|
2 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;500;700&display=swap');
|
3 |
+
#wpdt-promo-section {
|
4 |
+
position: relative;
|
5 |
+
display: flex;
|
6 |
+
justify-content: space-between;
|
7 |
+
align-items: center;
|
8 |
+
background: url("../../../assets/img/promo/background.png");
|
9 |
+
}
|
10 |
+
#wpdt-promo-section img{
|
11 |
+
width: 100%;
|
12 |
+
}
|
13 |
+
.wpdt-promo-notice {
|
14 |
+
border: none !important;
|
15 |
+
padding: 0 !important;
|
16 |
+
}
|
17 |
+
#wpdt-promo-section {
|
18 |
+
height: 140px;
|
19 |
+
}
|
20 |
+
|
21 |
+
.wpdt-promo-logo {
|
22 |
+
display: inline-block;
|
23 |
+
margin-left:40px;
|
24 |
+
}
|
25 |
+
.wpdt-promo-discounts {
|
26 |
+
height: 160px;
|
27 |
+
}
|
28 |
+
|
29 |
+
.wpdt-promo-close {
|
30 |
+
position: absolute;
|
31 |
+
right: 20px;
|
32 |
+
top: 10px;
|
33 |
+
}
|
34 |
+
button#wpdt-grab-it {
|
35 |
+
padding: 12px 20px;
|
36 |
+
background: linear-gradient(351.76deg, #FFD601 -8.07%, #FCFF7D 123.41%);
|
37 |
+
border-radius: 9px;
|
38 |
+
border: none;
|
39 |
+
font-family: 'Inter';
|
40 |
+
font-style: normal;
|
41 |
+
font-weight: 700;
|
42 |
+
font-size: 20px;
|
43 |
+
line-height: 24px;
|
44 |
+
margin: 0 40px 0 0;
|
45 |
+
text-align: center;
|
46 |
+
color: #011D9F;
|
47 |
+
width: 160px;
|
48 |
+
}
|
49 |
+
.tms-store-card-plan-ribbon-dis .tms-store-card-plan-ribbon-text,
|
50 |
+
.tms-store-card-plan-buy-now-button {
|
51 |
+
background: linear-gradient(351.76deg, #FFD601 -8.07%, #FCFF7D 123.41%);
|
52 |
+
}
|
53 |
+
button#wpdt-grab-it:hover,
|
54 |
+
.tms-store-card-plan-buy-now-button:hover {
|
55 |
+
background: #FFD601;
|
56 |
+
color: #011D9F !important;
|
57 |
+
transition: none !important;
|
58 |
+
}
|
59 |
+
.wpdt-promo-dismiss-text {
|
60 |
+
font-family: 'Inter';
|
61 |
+
font-style: normal;
|
62 |
+
font-weight: 400;
|
63 |
+
font-size: 14px;
|
64 |
+
margin-left: 65px;
|
65 |
+
line-height: 19px;
|
66 |
+
text-align: center;;
|
67 |
+
opacity: 0.8;
|
68 |
+
color: #FFFFFF;
|
69 |
+
}
|
70 |
+
.wpdt-icon-times-thin{
|
71 |
+
margin-left: 10px;
|
72 |
+
opacity: 0.8;
|
73 |
+
cursor: pointer;
|
74 |
+
color: #FFFFFF;
|
75 |
+
}
|
76 |
+
.wpdt-promo-notice .notice-dismiss {
|
77 |
+
display: none !important;
|
78 |
+
}
|
79 |
+
|
80 |
+
.tms-store-col-active:nth-child(2):hover {
|
81 |
+
padding-bottom: 18px !important;
|
82 |
+
}
|
83 |
+
.tms-store-col:nth-child(1) .tms-store-card, .tms-store-col:nth-child(3) .tms-store-card {
|
84 |
+
max-height: 499px;
|
85 |
+
}
|
86 |
+
@media(max-width: 1441px) {
|
87 |
+
#wpdt-promo-section img {
|
88 |
+
width: 90%;
|
89 |
+
}
|
90 |
+
.wpdt-promo-logo {
|
91 |
+
margin-left: 10px;
|
92 |
+
}
|
93 |
+
div#wpdt-first-section,
|
94 |
+
#wpdt-second-section {
|
95 |
+
text-align: center;
|
96 |
+
}
|
97 |
+
button#wpdt-grab-it {
|
98 |
+
margin-right: 10px;
|
99 |
+
}
|
100 |
+
}
|
101 |
+
@media(max-width: 1025px) {
|
102 |
+
.wpdt-promo-discounts {
|
103 |
+
height: 140px;
|
104 |
+
}
|
105 |
+
#wpdt-second-section {
|
106 |
+
display: none;
|
107 |
+
}
|
108 |
+
.wpdt-promo-dismiss-text {
|
109 |
+
display: none;
|
110 |
+
}
|
111 |
+
|
112 |
+
}
|
113 |
+
|
114 |
+
@media(min-width: 625px) and (max-width: 960px) {
|
115 |
+
.tms-store-col:nth-child(2) {
|
116 |
+
background: none !important;
|
117 |
+
}
|
118 |
+
}
|
119 |
+
|
120 |
+
@media(max-width: 625px) {
|
121 |
+
#wpdt-third-section {
|
122 |
+
display: none;
|
123 |
+
}
|
124 |
+
#wpdt-promo-section {
|
125 |
+
flex-direction: column;
|
126 |
+
height: 160px;
|
127 |
+
}
|
128 |
+
#wpdt-first-section img {
|
129 |
+
margin-top: 10px;
|
130 |
+
padding-bottom: 10px;
|
131 |
+
}
|
132 |
+
button#wpdt-grab-it {
|
133 |
+
margin-bottom: 10px;
|
134 |
+
}
|
135 |
+
}
|
assets/img/promo/all-licenses.png
ADDED
Binary file
|
assets/img/promo/background.png
ADDED
Binary file
|
assets/img/promo/exclusive-offer.png
ADDED
Binary file
|
assets/img/promo/logo-new-promo.png
ADDED
Binary file
|
assets/img/promo/promo-discounts.png
ADDED
Binary file
|
config/config.inc.php
CHANGED
@@ -9,7 +9,7 @@ defined('ABSPATH') or die("Cannot access pages directly.");
|
|
9 |
|
10 |
// Current version
|
11 |
|
12 |
-
define('WDT_CURRENT_VERSION', '2.1.
|
13 |
|
14 |
// Number of active plugin installs for wpDataTables
|
15 |
define('WDT_NUMBER_OF_ACTIVE_INSTALLS', '66,000+');
|
9 |
|
10 |
// Current version
|
11 |
|
12 |
+
define('WDT_CURRENT_VERSION', '2.1.43');
|
13 |
|
14 |
// Number of active plugin installs for wpDataTables
|
15 |
define('WDT_NUMBER_OF_ACTIVE_INSTALLS', '66,000+');
|
controllers/wdt_admin.php
CHANGED
@@ -544,11 +544,13 @@ function wdtAddOnsEnqueue() {
|
|
544 |
function wdtStoreEnqueue() {
|
545 |
//Enqueue JS and CSS from store for promo
|
546 |
wp_enqueue_style('tms-store-checkout', WDT_STORE_URL . '/static/css/checkout/checkout.css');
|
547 |
-
wp_enqueue_style('tms-store-wpdatatables', WDT_STORE_URL . '/static/css/checkout/wpdatatables.css');
|
|
|
548 |
|
549 |
wp_enqueue_script('tms-store-checkout-config', WDT_STORE_URL . '/static/js/checkout/config.js', array('jquery'), 1.12, true);
|
550 |
-
wp_enqueue_script('tms-store-checkout', WDT_STORE_URL . '/static/js/checkout/checkout.js', array('jquery'), 1.12, true);
|
551 |
-
|
|
|
552 |
}
|
553 |
|
554 |
/**
|
544 |
function wdtStoreEnqueue() {
|
545 |
//Enqueue JS and CSS from store for promo
|
546 |
wp_enqueue_style('tms-store-checkout', WDT_STORE_URL . '/static/css/checkout/checkout.css');
|
547 |
+
//wp_enqueue_style('tms-store-wpdatatables', WDT_STORE_URL . '/static/css/checkout/wpdatatables.css');
|
548 |
+
wp_enqueue_style('tms-store-wpdatatables', WDT_STORE_URL . '/static/css/checkout/wpdatatables-promo.css');
|
549 |
|
550 |
wp_enqueue_script('tms-store-checkout-config', WDT_STORE_URL . '/static/js/checkout/config.js', array('jquery'), 1.12, true);
|
551 |
+
//wp_enqueue_script('tms-store-checkout', WDT_STORE_URL . '/static/js/checkout/checkout.js', array('jquery'), 1.12, true);
|
552 |
+
wp_enqueue_script('tms-store-checkout', WDT_STORE_URL . '/static/js/checkout/checkout-promo.js', array('jquery'), 1.12, true);
|
553 |
+
wp_enqueue_script('tms-store-checkout-wpdatatables', WDT_STORE_URL . '/static/js/checkout/wpdatatables.js', array('jquery'), 1.12, true);
|
554 |
}
|
555 |
|
556 |
/**
|
controllers/wdt_functions.php
CHANGED
@@ -246,6 +246,9 @@ function wdtActivationCreateTables() {
|
|
246 |
}
|
247 |
if (get_option('wdtShowPromoNotice') === false) {
|
248 |
delete_option('wdtShowPromoNotice');
|
|
|
|
|
|
|
249 |
}
|
250 |
if (get_option('wdtSimpleTableAlert') === false) {
|
251 |
update_option('wdtSimpleTableAlert', true );
|
@@ -284,11 +287,13 @@ function wdtAdminRatingMessages() {
|
|
284 |
<p class="wpdt-forminator-news"><strong style="color: #ff8c00">NEWS!</strong> wpDataTables just launched a new <strong style="color: #ff8c00">FREE</strong> addon - <strong style="color: #ff8c00">Forminator Forms integration for wpDataTables</strong>. You can download it and read more about it on wp.org on this <a class="wdt-forminator-link" href="https://wordpress.org/plugins/wpdatatables-forminator/" style="color: #ff8c00" target="_blank">link</a>.</p>
|
285 |
</div>';
|
286 |
}
|
287 |
-
//
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
|
|
|
|
292 |
}
|
293 |
|
294 |
add_action( 'admin_notices', 'wdtAdminRatingMessages' );
|
@@ -318,7 +323,7 @@ add_action( 'wp_ajax_wdt_remove_forminator_notice', 'wdtRemoveForminatorNotice'
|
|
318 |
* Remove Promo notice message
|
319 |
*/
|
320 |
function wdtRemovePromoNotice() {
|
321 |
-
update_option( '
|
322 |
echo json_encode( array("success") );
|
323 |
exit;
|
324 |
}
|
@@ -402,6 +407,7 @@ function wdtUninstallDelete() {
|
|
402 |
delete_option('wdtRatingDiv');
|
403 |
delete_option('wdtShowForminatorNotice');
|
404 |
delete_option('wdtShowPromoNotice');
|
|
|
405 |
delete_option('wdtSimpleTableAlert');
|
406 |
delete_option('wdtTempFutureDate');
|
407 |
delete_option('wdtVersion');
|
246 |
}
|
247 |
if (get_option('wdtShowPromoNotice') === false) {
|
248 |
delete_option('wdtShowPromoNotice');
|
249 |
+
}
|
250 |
+
if (get_option('wdtShowPromoDiscountNotice') === false) {
|
251 |
+
update_option('wdtShowPromoDiscountNotice', 'yes' );
|
252 |
}
|
253 |
if (get_option('wdtSimpleTableAlert') === false) {
|
254 |
update_option('wdtSimpleTableAlert', true );
|
287 |
<p class="wpdt-forminator-news"><strong style="color: #ff8c00">NEWS!</strong> wpDataTables just launched a new <strong style="color: #ff8c00">FREE</strong> addon - <strong style="color: #ff8c00">Forminator Forms integration for wpDataTables</strong>. You can download it and read more about it on wp.org on this <a class="wdt-forminator-link" href="https://wordpress.org/plugins/wpdatatables-forminator/" style="color: #ff8c00" target="_blank">link</a>.</p>
|
288 |
</div>';
|
289 |
}
|
290 |
+
//Notice bar for Lite promo
|
291 |
+
if( is_admin() && (strpos($wpdtPage,'wpdatatables-dashboard') !== false || strpos($wpdtPage,'wpdatatables-lite-vs-premium') !== false) &&
|
292 |
+
get_option( 'wdtShowPromoDiscountNotice' ) == "yes" ) {
|
293 |
+
include WDT_TEMPLATE_PATH . 'admin/common/promo.inc.php';
|
294 |
+
wp_enqueue_style('wdt-promo-css', WDT_CSS_PATH . 'admin/promo.css');
|
295 |
+
|
296 |
+
}
|
297 |
}
|
298 |
|
299 |
add_action( 'admin_notices', 'wdtAdminRatingMessages' );
|
323 |
* Remove Promo notice message
|
324 |
*/
|
325 |
function wdtRemovePromoNotice() {
|
326 |
+
update_option( 'wdtShowPromoDiscountNotice', 'no' );
|
327 |
echo json_encode( array("success") );
|
328 |
exit;
|
329 |
}
|
407 |
delete_option('wdtRatingDiv');
|
408 |
delete_option('wdtShowForminatorNotice');
|
409 |
delete_option('wdtShowPromoNotice');
|
410 |
+
delete_option('wdtShowPromoDiscountNotice');
|
411 |
delete_option('wdtSimpleTableAlert');
|
412 |
delete_option('wdtTempFutureDate');
|
413 |
delete_option('wdtVersion');
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: table, table builder, data tables, tables, charts, datatables, csv, excel,
|
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 6.0.2
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.1.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -361,6 +361,11 @@ This can be changed from the “Number format” drop-down menu in the wpDataTab
|
|
361 |
|
362 |
== Changelog ==
|
363 |
|
|
|
|
|
|
|
|
|
|
|
364 |
= 2.1.42 =
|
365 |
* Feature: [Caching tables data](https://wpdatatables.com/documentation/table-features/caching-data-and-auto-update-cache-in-wordpress-tables/) for non-server-side tables (Excel, CSV, XML, JSON, and PHP array).
|
366 |
* Feature: [Auto update table cache](https://wpdatatables.com/documentation/table-features/caching-data-and-auto-update-cache-in-wordpress-tables/) for non-server-side tables (Excel, CSV, XML, JSON, and PHP array).
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 6.0.2
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.1.43
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
361 |
|
362 |
== Changelog ==
|
363 |
|
364 |
+
= 2.1.43 =
|
365 |
+
* CSS fixes.
|
366 |
+
* Bugfix: Fixed issue loading tables crated from Forminator.
|
367 |
+
Other small bug fixes and stability improvements.
|
368 |
+
|
369 |
= 2.1.42 =
|
370 |
* Feature: [Caching tables data](https://wpdatatables.com/documentation/table-features/caching-data-and-auto-update-cache-in-wordpress-tables/) for non-server-side tables (Excel, CSV, XML, JSON, and PHP array).
|
371 |
* Feature: [Auto update table cache](https://wpdatatables.com/documentation/table-features/caching-data-and-auto-update-cache-in-wordpress-tables/) for non-server-side tables (Excel, CSV, XML, JSON, and PHP array).
|
source/class.wpdatatable.php
CHANGED
@@ -2199,7 +2199,7 @@ class WPDataTable
|
|
2199 |
default:
|
2200 |
// Solution for addons
|
2201 |
$this->customBasedConstruct(
|
2202 |
-
$tableData
|
2203 |
$params
|
2204 |
);
|
2205 |
|
2199 |
default:
|
2200 |
// Solution for addons
|
2201 |
$this->customBasedConstruct(
|
2202 |
+
$tableData,
|
2203 |
$params
|
2204 |
);
|
2205 |
|
templates/admin/common/promo.inc.php
CHANGED
@@ -3,202 +3,20 @@
|
|
3 |
<div class="notice notice-info is-dismissible wpdt-promo-notice">
|
4 |
<div id="wpdt-promo-section">
|
5 |
<div id="wpdt-first-section">
|
6 |
-
<img class="wpdt-promo-logo" src="<?php echo WDT_ROOT_URL ?>assets/img/
|
7 |
</div>
|
8 |
<div id="wpdt-second-section">
|
9 |
-
<
|
10 |
-
|
11 |
-
|
12 |
-
<
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
17 |
</div>
|
18 |
</div>
|
19 |
</div>
|
20 |
-
<style>
|
21 |
-
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;700&family=Kaushan+Script&display=swap');
|
22 |
-
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;500;700&display=swap');
|
23 |
-
.wpdt-promo-notice {
|
24 |
-
border: none !important;
|
25 |
-
padding: 0 !important;
|
26 |
-
}
|
27 |
-
#wpdt-first-section:after {
|
28 |
-
content: '';
|
29 |
-
display: inline-block;
|
30 |
-
position: absolute;
|
31 |
-
width: 30px;
|
32 |
-
height: 141px;
|
33 |
-
right: -15px;
|
34 |
-
top: 0;
|
35 |
-
border-radius: 50%;
|
36 |
-
border: none;
|
37 |
-
background-color: #FFFFFF;
|
38 |
-
}
|
39 |
-
#wpdt-promo-section,
|
40 |
-
#wpdt-first-section,
|
41 |
-
#wpdt-second-section {
|
42 |
-
height: 141px;
|
43 |
-
}
|
44 |
-
|
45 |
-
#wpdt-first-section {
|
46 |
-
width: 40%;
|
47 |
-
float: left;
|
48 |
-
position: relative;
|
49 |
-
background: #FFFFFF;
|
50 |
-
}
|
51 |
-
#wpdt-second-section {
|
52 |
-
width: 60%;
|
53 |
-
display: flex;
|
54 |
-
padding-top: 15px;
|
55 |
-
padding-right: 20%;
|
56 |
-
float: right;
|
57 |
-
background: #6ED1FD;
|
58 |
-
}
|
59 |
-
|
60 |
-
.wpdt-promo-logo {
|
61 |
-
margin: 6% 0 0 45%;
|
62 |
-
width: 350px;
|
63 |
-
}
|
64 |
-
.wpdt-promo-upgrade-text {
|
65 |
-
width: 90%;
|
66 |
-
padding-top: 0;
|
67 |
-
padding-right: 10px;
|
68 |
-
margin-right: 30px;
|
69 |
-
padding-left: 50px;
|
70 |
-
}
|
71 |
-
.wpdt-promo-upgrade-text p{
|
72 |
-
font-family: 'Inter';
|
73 |
-
font-style: normal;
|
74 |
-
font-weight: 500;
|
75 |
-
padding: 0;
|
76 |
-
margin: 0;
|
77 |
-
font-size: 33px;
|
78 |
-
line-height: 37px;
|
79 |
-
color: #181059;
|
80 |
-
}
|
81 |
-
|
82 |
-
.wpdt-promo-upgrade-btn {
|
83 |
-
width: 50%;
|
84 |
-
}
|
85 |
-
.wpdt-promo-upgrade-btn button#wpdt-grab-it {
|
86 |
-
padding: 12px 20px;
|
87 |
-
background: #140964;
|
88 |
-
border-radius: 10px;
|
89 |
-
border: none;
|
90 |
-
font-family: 'Inter';
|
91 |
-
font-style: normal;
|
92 |
-
font-weight: 700;
|
93 |
-
font-size: 20px;
|
94 |
-
line-height: 24px;
|
95 |
-
margin: 38px 0 15px 0;
|
96 |
-
text-align: center;
|
97 |
-
color: #FFFFFF;
|
98 |
-
width: 200px;
|
99 |
-
}
|
100 |
-
.wpdt-promo-dismiss-text {
|
101 |
-
font-family: 'Inter';
|
102 |
-
font-style: normal;
|
103 |
-
font-weight: 400;
|
104 |
-
font-size: 14px;
|
105 |
-
margin-left: 65px;
|
106 |
-
line-height: 19px;
|
107 |
-
text-align: center;;
|
108 |
-
opacity: 0.8;
|
109 |
-
color: #FFFFFF;
|
110 |
-
}
|
111 |
-
.wpdt-icon-times-thin{
|
112 |
-
margin-left: 10px;
|
113 |
-
opacity: 0.8;
|
114 |
-
cursor: pointer;
|
115 |
-
color: #FFFFFF;
|
116 |
-
}
|
117 |
-
.wpdt-promo-notice .notice-dismiss {
|
118 |
-
display: none !important;
|
119 |
-
}
|
120 |
-
@media(max-width: 1441px) {
|
121 |
-
.wpdt-promo-logo {
|
122 |
-
margin: 8% 0 0 15%;
|
123 |
-
}
|
124 |
-
#wpdt-second-section {
|
125 |
-
padding-right: 5%;
|
126 |
-
}
|
127 |
-
}
|
128 |
-
@media(max-width: 1025px) {
|
129 |
-
#wpdt-promo-section {
|
130 |
-
position: relative;
|
131 |
-
}
|
132 |
-
#wpdt-promo-section,
|
133 |
-
#wpdt-first-section,
|
134 |
-
#wpdt-second-section {
|
135 |
-
height: auto;
|
136 |
-
}
|
137 |
-
#wpdt-first-section {
|
138 |
-
width: 100%;
|
139 |
-
float: none;
|
140 |
-
margin: 0 auto;
|
141 |
-
padding: 34px 0;
|
142 |
-
position: relative;
|
143 |
-
text-align: center;
|
144 |
-
background: #FFFFFF;
|
145 |
-
}
|
146 |
-
#wpdt-second-section {
|
147 |
-
width: 100%;
|
148 |
-
display: flex;
|
149 |
-
padding: 15px 20px;
|
150 |
-
float: none;
|
151 |
-
background: #6ED1FD;
|
152 |
-
}
|
153 |
-
#wpdt-first-section:after{
|
154 |
-
display: none;
|
155 |
-
}
|
156 |
-
.wpdt-promo-logo {
|
157 |
-
width: 50%;
|
158 |
-
margin: 0;
|
159 |
-
padding: 0 10px;
|
160 |
-
}
|
161 |
-
.wpdt-promo-upgrade-btn {
|
162 |
-
width: auto;
|
163 |
-
text-align: right;
|
164 |
-
}
|
165 |
-
.wpdt-promo-upgrade-btn button#wpdt-grab-it {
|
166 |
-
margin: 15px 0;
|
167 |
-
}
|
168 |
-
.wpdt-promo-upgrade-text {
|
169 |
-
width: 100%;
|
170 |
-
padding: 10px 0 0 0;
|
171 |
-
margin-right: 0;
|
172 |
-
}
|
173 |
-
.wpdt-icon-times-thin {
|
174 |
-
top: 5px;
|
175 |
-
right: 10px;
|
176 |
-
position: absolute;
|
177 |
-
color: #140964;
|
178 |
-
}
|
179 |
-
.wpdt-promo-dismiss-text {
|
180 |
-
position: absolute;
|
181 |
-
top: 2px;
|
182 |
-
right: 25px;
|
183 |
-
color: #140964;
|
184 |
-
font-size: 12px;
|
185 |
-
}
|
186 |
-
}
|
187 |
-
@media(max-width: 625px) {
|
188 |
-
.wpdt-promo-logo {
|
189 |
-
width: 70%;
|
190 |
-
}
|
191 |
-
#wpdt-second-section {
|
192 |
-
flex-direction: column;
|
193 |
-
}
|
194 |
-
.wpdt-promo-upgrade-btn {
|
195 |
-
text-align: center;
|
196 |
-
}
|
197 |
-
.wpdt-promo-upgrade-btn button#wpdt-grab-it {
|
198 |
-
margin: 25px 0 15px 0;
|
199 |
-
}
|
200 |
-
#wpdt-first-section {
|
201 |
-
padding: 40px 0;
|
202 |
-
}
|
203 |
-
}
|
204 |
-
</style>
|
3 |
<div class="notice notice-info is-dismissible wpdt-promo-notice">
|
4 |
<div id="wpdt-promo-section">
|
5 |
<div id="wpdt-first-section">
|
6 |
+
<img class="wpdt-promo-logo" src="<?php echo WDT_ROOT_URL ?>assets/img/promo/exclusive-offer.png" alt="">
|
7 |
</div>
|
8 |
<div id="wpdt-second-section">
|
9 |
+
<img class="wpdt-promo-discounts" src="<?php echo WDT_ROOT_URL ?>assets/img/promo/promo-discounts.png" alt="">
|
10 |
+
</div>
|
11 |
+
<div id="wpdt-third-section">
|
12 |
+
<img class="wpdt-promo-text" src="<?php echo WDT_ROOT_URL ?>assets/img/promo/all-licenses.png" alt="">
|
13 |
+
</div>
|
14 |
+
<div id="wpdt-fourth-section">
|
15 |
+
<button id="wpdt-grab-it" class="tms-store-checkout-wpdatatables">Grab yours!</button>
|
16 |
+
</div>
|
17 |
+
<div class="wpdt-promo-close">
|
18 |
+
<span class="wpdt-promo-dismiss-text">Don't show again</span>
|
19 |
+
<i class="wpdt-icon-times-thin wpdt-notice-dismiss"></i>
|
20 |
</div>
|
21 |
</div>
|
22 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
templates/admin/dashboard/dashboard.inc.php
CHANGED
@@ -337,7 +337,7 @@ $tableChartsCount = (int)WDTTools::getTablesCount('chart');
|
|
337 |
</span>
|
338 |
</p>
|
339 |
<p class="wpdt-text wpdt-font m-b-18">
|
340 |
-
A
|
341 |
</p>
|
342 |
<div class="alert alert-info m-b-0" role="alert">
|
343 |
<i class="wpdt-icon-info-circle-full"></i>
|
337 |
</span>
|
338 |
</p>
|
339 |
<p class="wpdt-text wpdt-font m-b-18">
|
340 |
+
A major update new features and stability improvements:
|
341 |
</p>
|
342 |
<div class="alert alert-info m-b-0" role="alert">
|
343 |
<i class="wpdt-icon-info-circle-full"></i>
|
wpdatatables.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: wpDataTables - Tables & Table Charts
|
4 |
Plugin URI: https://wpdatatables.com
|
5 |
Description: Create responsive, sortable tables & charts from Excel, CSV or PHP. Add tables & charts to any post in minutes with DataTables.
|
6 |
-
Version: 2.1.
|
7 |
Author: TMS-Plugins
|
8 |
Author URI: https://tms-outsource.com
|
9 |
Text Domain: wpdatatables
|
3 |
Plugin Name: wpDataTables - Tables & Table Charts
|
4 |
Plugin URI: https://wpdatatables.com
|
5 |
Description: Create responsive, sortable tables & charts from Excel, CSV or PHP. Add tables & charts to any post in minutes with DataTables.
|
6 |
+
Version: 2.1.43
|
7 |
Author: TMS-Plugins
|
8 |
Author URI: https://tms-outsource.com
|
9 |
Text Domain: wpdatatables
|