Version Description
- BugFix: Fixed issue with Elementor integration. Other small bug fixes and stability improvements.
Download this release
Release Info
Developer | wpDataTables |
Plugin | wpDataTables Lite |
Version | 2.1.33 |
Comparing to | |
See all releases |
Code changes from version 2.1.32 to 2.1.33
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 |
/**
|
15 |
* Regular Expressions
|
9 |
|
10 |
// Current version
|
11 |
|
12 |
+
define('WDT_CURRENT_VERSION', '2.1.33');
|
13 |
|
14 |
/**
|
15 |
* Regular Expressions
|
integrations/page_builders/elementor/widgets/class.wpDataTablesElementorWidget.php
CHANGED
@@ -40,7 +40,7 @@ class WPDataTables_Elementor_Widget extends Widget_Base {
|
|
40 |
$this->_allTables = $allTables;
|
41 |
}
|
42 |
|
43 |
-
protected function
|
44 |
|
45 |
$this->start_controls_section(
|
46 |
'wpdatatables_section',
|
40 |
$this->_allTables = $allTables;
|
41 |
}
|
42 |
|
43 |
+
protected function register_controls() {
|
44 |
|
45 |
$this->start_controls_section(
|
46 |
'wpdatatables_section',
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: table, table builder, data tables, tables, charts, datatables, simple tabl
|
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 6.0
|
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 |
|
@@ -60,7 +60,7 @@ Learn [How to create WordPress tables from JSON](https://wpdatatables.com/docume
|
|
60 |
|
61 |
== Develop dynamic WordPress table from Serialized PHP array ==
|
62 |
|
63 |
-
For developer users, or users who are at least somewhat familiar with PHP language, that previous input data sources (Excel, CSV, XML of JSON) are not flexible enough for dynamic data presentation. We didn't want to limit your freedom in wpDataTables, so we implemented serialized PHP arrays as one of data sources. You can prepare data from some private or public API, or use WP Query to get data from your posts, get data by depending on some variables in the URL, or use some other complex logic. Learn how you can prepare a PHP file and [How to create WordPress tables based on serialized PHP arrays](https://wpdatatables.com/documentation/creating-wpdatatables/creating-wpdatatables-from-serialized-php-array/) in our docs.
|
64 |
|
65 |
wpDataTables allows creating 14 different chart types using the Google Charts rendering engine:
|
66 |
|
@@ -91,7 +91,7 @@ wpDataTables allows creating 14 different chart types using the Google Charts re
|
|
91 |
* Chart.js Doughnut Chart - [Live example](https://wpdatatables.com/documentation/wpdatacharts/chartjs/#chart-js-doughnut-chart)
|
92 |
* Chart.js Bubble Chart - [Live example](https://wpdatatables.com/documentation/wpdatacharts/chartjs/#chart-js-bubble-chart)
|
93 |
|
94 |
-
Creating tables and charts with a WordPress tables plugin has never been easier. It only takes 3 basic steps:
|
95 |
|
96 |
**Step 1 - Provide table data**
|
97 |
|
@@ -104,6 +104,7 @@ You can customize and configure the columns of your WordPress table (rename, reo
|
|
104 |
**Step 3 - Publish in a post or page**
|
105 |
|
106 |
All tables (except simple table) will become sortable and will have pagination, global search, display length and export table buttons by default. Once you are happy with the design of your WordPress table, you can easily insert it on any post or page through [Gutenberg](https://wpdatatables.com/documentation/general/gutenberg-editor/), [standard WP Editor and shortcode](https://wpdatatables.com/documentation/general/wpdatatables-shortcodes/), or through page builders like:
|
|
|
107 |
* [Avada Page Builder](https://wpdatatables.com/documentation/general/avada-builder-integration/),
|
108 |
* [Divi Page Builder](https://wpdatatables.com/documentation/general/divi-builder-integration/),
|
109 |
* [WPBakery Page Builder](https://wpdatatables.com/documentation/table-features/visual-composer-integration/) or
|
@@ -117,7 +118,7 @@ All these functionalities are configurable, and it is your decision whether to t
|
|
117 |
|
118 |
== Global, individual and multiple columns sorting ==
|
119 |
|
120 |
-
wpDataTables can act as a sortable table plugin by supporting sorting for all the data types. Tables rendered by the wpDataTables plugin are sortable by default (except simple tables). It means that the content of the
|
121 |
Detail explanation you can find in our documentation about [Creating a sortable table in WordPress](https://wpdatatables.com/documentation/table-features/sorting/).
|
122 |
|
123 |
== Column types and features ==
|
@@ -143,7 +144,7 @@ Please note some limitations compared to the Premium version of the wpDataTables
|
|
143 |
|
144 |
1. MySQL-query based tables support is not included.
|
145 |
2. Creating tables from the Google Spreadsheet files is not included.
|
146 |
-
3. Create a
|
147 |
4. Server-side processing is not included.
|
148 |
5. Responsive mode for the tables is not included.
|
149 |
6. Table filters are not included.
|
@@ -181,7 +182,7 @@ The major features of wpDataTables include but are not limited to:
|
|
181 |
* No coding knowledge required;
|
182 |
* Fully customizable WordPress tables and charts – from choosing the color palette to inserting elements such as your company logo, wpDataTables allows you to customize your tables and charts in any way you see fit;
|
183 |
* A WordPress table plugin that works like a spreadsheet app – with all the advanced features and tools, wpDataTables truly stands out from the competition;
|
184 |
-
* 1
|
185 |
|
186 |
== Showcases how it is commonly applied ==
|
187 |
|
@@ -203,6 +204,7 @@ The major features of wpDataTables include but are not limited to:
|
|
203 |
* Pedigree tables
|
204 |
* Historical data
|
205 |
* Country population statistics
|
|
|
206 |
* and all other cases or industries where data need to be shown as tabular or chart format.
|
207 |
|
208 |
|
@@ -223,7 +225,7 @@ Additional useful features include:
|
|
223 |
== Extend wpDataTables functionality with add-ons ==
|
224 |
|
225 |
wpDataTable Lite and Premium users have the option to extend wpDataTables functionality with **FREE** add-ons such as:
|
226 |
-
1. [Forminator Forms Integration](https://wordpress.org/plugins/wpdatatables-forminator/) - that allows you to create
|
227 |
|
228 |
wpDataTable Premium users have the option to extend wpDataTables functionality with premium add-ons such as:
|
229 |
1. [Master-detail tables](https://wpdatatables.com/documentation/addons/master-detail-tables/)** - which allows you and your site visitors to see details for each row with a simple click (view on popup or custom page/post)
|
@@ -237,6 +239,7 @@ wpDataTable Premium users have the option to extend wpDataTables functionality w
|
|
237 |
== For Developers ==
|
238 |
|
239 |
This section is intended for advanced users to extend or change wpDataTables functionality. At least a basic understanding of coding in PHP and JavaScript is required.
|
|
|
240 |
* [wpDataTables Actions](https://wpdatatables.com/documentation/information-for-developers/hooks/)
|
241 |
* [wpDataTables Filters](https://wpdatatables.com/documentation/information-for-developers/filters/)
|
242 |
* [Front-end Table callbacks](https://wpdatatables.com/documentation/information-for-developers/front-end-callbacks/)
|
@@ -330,6 +333,10 @@ This can be changed from the “Number format” drop-down menu in the wpDataTab
|
|
330 |
|
331 |
== Changelog ==
|
332 |
|
|
|
|
|
|
|
|
|
333 |
= 2.1.32 =
|
334 |
* BugFix: Fixed issue with showing tables insert from Divi integration.
|
335 |
* Compatibility with WordPress 6.0 approved.
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 6.0
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.1.33
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
60 |
|
61 |
== Develop dynamic WordPress table from Serialized PHP array ==
|
62 |
|
63 |
+
For developer users, or users who are at least somewhat familiar with PHP language, that previous input data sources (Excel, CSV, XML of JSON) are not flexible enough for dynamic data presentation. We didn't want to limit your freedom in wpDataTables, so we implemented serialized PHP arrays as one of data sources, so you are able to create dynamic datatables. You can prepare data from some private or public API, or use WP Query to get data from your posts, get data by depending on some variables in the URL, or use some other complex logic. Learn how you can prepare a PHP file and [How to create WordPress tables based on serialized PHP arrays](https://wpdatatables.com/documentation/creating-wpdatatables/creating-wpdatatables-from-serialized-php-array/) in our docs.
|
64 |
|
65 |
wpDataTables allows creating 14 different chart types using the Google Charts rendering engine:
|
66 |
|
91 |
* Chart.js Doughnut Chart - [Live example](https://wpdatatables.com/documentation/wpdatacharts/chartjs/#chart-js-doughnut-chart)
|
92 |
* Chart.js Bubble Chart - [Live example](https://wpdatatables.com/documentation/wpdatacharts/chartjs/#chart-js-bubble-chart)
|
93 |
|
94 |
+
Creating tables, datatables and charts with a WordPress tables plugin has never been easier. It only takes 3 basic steps:
|
95 |
|
96 |
**Step 1 - Provide table data**
|
97 |
|
104 |
**Step 3 - Publish in a post or page**
|
105 |
|
106 |
All tables (except simple table) will become sortable and will have pagination, global search, display length and export table buttons by default. Once you are happy with the design of your WordPress table, you can easily insert it on any post or page through [Gutenberg](https://wpdatatables.com/documentation/general/gutenberg-editor/), [standard WP Editor and shortcode](https://wpdatatables.com/documentation/general/wpdatatables-shortcodes/), or through page builders like:
|
107 |
+
|
108 |
* [Avada Page Builder](https://wpdatatables.com/documentation/general/avada-builder-integration/),
|
109 |
* [Divi Page Builder](https://wpdatatables.com/documentation/general/divi-builder-integration/),
|
110 |
* [WPBakery Page Builder](https://wpdatatables.com/documentation/table-features/visual-composer-integration/) or
|
118 |
|
119 |
== Global, individual and multiple columns sorting ==
|
120 |
|
121 |
+
wpDataTables can act as a sortable table plugin by supporting sorting for all the data types. Tables rendered by the wpDataTables plugin are sortable by default (except simple tables). It means that the content of the datatables can be ordered by the values of one of its columns. When the sorting is enabled, each column header will become “interactive”. If you need to sort by multiple columns, it is possible with “Shift” button on the keyboard. While holding it you are able to click on other columns' header(initially, the ordering will be done based on the first column, and after that, based on the second column).
|
122 |
Detail explanation you can find in our documentation about [Creating a sortable table in WordPress](https://wpdatatables.com/documentation/table-features/sorting/).
|
123 |
|
124 |
== Column types and features ==
|
144 |
|
145 |
1. MySQL-query based tables support is not included.
|
146 |
2. Creating tables from the Google Spreadsheet files is not included.
|
147 |
+
3. Create a datatables manually is not included.
|
148 |
4. Server-side processing is not included.
|
149 |
5. Responsive mode for the tables is not included.
|
150 |
6. Table filters are not included.
|
182 |
* No coding knowledge required;
|
183 |
* Fully customizable WordPress tables and charts – from choosing the color palette to inserting elements such as your company logo, wpDataTables allows you to customize your tables and charts in any way you see fit;
|
184 |
* A WordPress table plugin that works like a spreadsheet app – with all the advanced features and tools, wpDataTables truly stands out from the competition;
|
185 |
+
* 1, 3 or unlimited years of updates and support
|
186 |
|
187 |
== Showcases how it is commonly applied ==
|
188 |
|
204 |
* Pedigree tables
|
205 |
* Historical data
|
206 |
* Country population statistics
|
207 |
+
* Datatables
|
208 |
* and all other cases or industries where data need to be shown as tabular or chart format.
|
209 |
|
210 |
|
225 |
== Extend wpDataTables functionality with add-ons ==
|
226 |
|
227 |
wpDataTable Lite and Premium users have the option to extend wpDataTables functionality with **FREE** add-ons such as:
|
228 |
+
1. [Forminator Forms Integration](https://wordpress.org/plugins/wpdatatables-forminator/) - that allows you to create datatables from Forminator Forms submissions.
|
229 |
|
230 |
wpDataTable Premium users have the option to extend wpDataTables functionality with premium add-ons such as:
|
231 |
1. [Master-detail tables](https://wpdatatables.com/documentation/addons/master-detail-tables/)** - which allows you and your site visitors to see details for each row with a simple click (view on popup or custom page/post)
|
239 |
== For Developers ==
|
240 |
|
241 |
This section is intended for advanced users to extend or change wpDataTables functionality. At least a basic understanding of coding in PHP and JavaScript is required.
|
242 |
+
|
243 |
* [wpDataTables Actions](https://wpdatatables.com/documentation/information-for-developers/hooks/)
|
244 |
* [wpDataTables Filters](https://wpdatatables.com/documentation/information-for-developers/filters/)
|
245 |
* [Front-end Table callbacks](https://wpdatatables.com/documentation/information-for-developers/front-end-callbacks/)
|
333 |
|
334 |
== Changelog ==
|
335 |
|
336 |
+
= 2.1.33 =
|
337 |
+
* BugFix: Fixed issue with Elementor integration.
|
338 |
+
Other small bug fixes and stability improvements.
|
339 |
+
|
340 |
= 2.1.32 =
|
341 |
* BugFix: Fixed issue with showing tables insert from Divi integration.
|
342 |
* Compatibility with WordPress 6.0 approved.
|
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.33
|
7 |
Author: TMS-Plugins
|
8 |
Author URI: https://tms-outsource.com
|
9 |
Text Domain: wpdatatables
|