Version Description
- BugFix: Fixed issue with fatal error with old versions of Avada theme. Other small bug fixes and stability improvements.
Download this release
Release Info
Developer | wpDataTables |
Plugin | wpDataTables Lite |
Version | 2.1.37 |
Comparing to | |
See all releases |
Code changes from version 2.1.36 to 2.1.37
- config/config.inc.php +1 -1
- controllers/wdt_admin.php +2 -2
- controllers/wdt_functions.php +6 -6
- readme.txt +6 -2
- wpdatatables.php +1 -1
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.37');
|
13 |
|
14 |
// Number of active plugin installs for wpDataTables
|
15 |
define('WDT_NUMBER_OF_ACTIVE_INSTALLS', '66,000+');
|
controllers/wdt_admin.php
CHANGED
@@ -544,10 +544,10 @@ 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
|
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
|
551 |
wp_enqueue_script('tms-store-checkout-wpdatatables', WDT_STORE_URL . '/static/js/checkout/wpdatatables.js', array('jquery'), 1.12, true);
|
552 |
}
|
553 |
|
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 |
wp_enqueue_script('tms-store-checkout-wpdatatables', WDT_STORE_URL . '/static/js/checkout/wpdatatables.js', array('jquery'), 1.12, true);
|
552 |
}
|
553 |
|
controllers/wdt_functions.php
CHANGED
@@ -224,7 +224,7 @@ function wdtActivationCreateTables() {
|
|
224 |
update_option('wdtShowForminatorNotice', 'yes' );
|
225 |
}
|
226 |
if (get_option('wdtShowPromoNotice') === false) {
|
227 |
-
|
228 |
}
|
229 |
if (get_option('wdtSimpleTableAlert') === false) {
|
230 |
update_option('wdtSimpleTableAlert', true );
|
@@ -263,11 +263,11 @@ function wdtAdminRatingMessages() {
|
|
263 |
<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>
|
264 |
</div>';
|
265 |
}
|
266 |
-
|
267 |
-
if( is_admin() && (strpos($wpdtPage,'wpdatatables-dashboard') !== false || strpos($wpdtPage,'wpdatatables-lite-vs-premium') !== false) &&
|
268 |
-
get_option( 'wdtShowPromoNotice' ) == "yes" ) {
|
269 |
-
include WDT_TEMPLATE_PATH . 'admin/common/promo.inc.php';
|
270 |
-
}
|
271 |
}
|
272 |
|
273 |
add_action( 'admin_notices', 'wdtAdminRatingMessages' );
|
224 |
update_option('wdtShowForminatorNotice', 'yes' );
|
225 |
}
|
226 |
if (get_option('wdtShowPromoNotice') === false) {
|
227 |
+
delete_option('wdtShowPromoNotice');
|
228 |
}
|
229 |
if (get_option('wdtSimpleTableAlert') === false) {
|
230 |
update_option('wdtSimpleTableAlert', true );
|
263 |
<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>
|
264 |
</div>';
|
265 |
}
|
266 |
+
// Notice bar for Lite promo
|
267 |
+
// if( is_admin() && (strpos($wpdtPage,'wpdatatables-dashboard') !== false || strpos($wpdtPage,'wpdatatables-lite-vs-premium') !== false) &&
|
268 |
+
// get_option( 'wdtShowPromoNotice' ) == "yes" ) {
|
269 |
+
// include WDT_TEMPLATE_PATH . 'admin/common/promo.inc.php';
|
270 |
+
// }
|
271 |
}
|
272 |
|
273 |
add_action( 'admin_notices', 'wdtAdminRatingMessages' );
|
readme.txt
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
Contributors: wpDataTables
|
3 |
Author URI: https://tms-outsource.com
|
4 |
Plugin URI: https://wpdatatables.com/
|
5 |
-
Tags: table, table builder, data tables, tables, charts, datatables, simple table, tables from csv, tables from excel, dynamic tables, merge cells, pricing tables, responsive tables, responsive charts, grouping data, pricing table, row grouping,
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 6.0.1
|
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 |
|
@@ -348,6 +348,10 @@ This can be changed from the “Number format” drop-down menu in the wpDataTab
|
|
348 |
|
349 |
== Changelog ==
|
350 |
|
|
|
|
|
|
|
|
|
351 |
= 2.1.36 =
|
352 |
* BugFix: Fixed issue with CSS.
|
353 |
Other small bug fixes and stability improvements.
|
2 |
Contributors: wpDataTables
|
3 |
Author URI: https://tms-outsource.com
|
4 |
Plugin URI: https://wpdatatables.com/
|
5 |
+
Tags: table, table builder, data tables, tables, charts, datatables, csv, excel, json, simple table, tables from csv, tables from excel, dynamic tables, merge cells, pricing tables, responsive tables, responsive charts, grouping data, pricing table, row grouping, chart, pie charts, mysql tables, table plugin, wp table, wordpress table plugin, wordpress tables, editing charts, google charts, chartjs, xml, php array, line chart, donut, bar chart, histogram, area chart, bubble chart, gauge chart, scatter chart, candlestick, waterfall, polar, radar
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 6.0.1
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.1.37
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
348 |
|
349 |
== Changelog ==
|
350 |
|
351 |
+
= 2.1.37 =
|
352 |
+
* BugFix: Fixed issue with fatal error with old versions of Avada theme.
|
353 |
+
Other small bug fixes and stability improvements.
|
354 |
+
|
355 |
= 2.1.36 =
|
356 |
* BugFix: Fixed issue with CSS.
|
357 |
Other small bug fixes and stability improvements.
|
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.37
|
7 |
Author: TMS-Plugins
|
8 |
Author URI: https://tms-outsource.com
|
9 |
Text Domain: wpdatatables
|