forked from Michel2/wp-jquery-datatable
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3de35c30d7 | ||
|
|
a9143409e6 | ||
|
|
f1a8c171bb | ||
|
|
97dd64349c | ||
|
|
4855b9d6ab | ||
|
|
208bdd29d7 | ||
|
|
a8bed3a8c9 | ||
|
|
7883bcfccd | ||
|
|
8ca972956e | ||
|
|
7e74b70bf2 | ||
|
|
94137303d8 | ||
|
|
b71fd99957 | ||
|
|
dcbf8e755e | ||
|
|
ec18ebded5 | ||
|
|
781d3303fd | ||
|
|
1880961ea7 | ||
|
|
f6da73d22c | ||
|
|
676cc27c2b | ||
|
|
a9bb591b47 | ||
|
|
940591e760 | ||
|
|
333b4dbf89 | ||
|
|
f97d11d7ec | ||
|
|
cd382aa237 | ||
|
|
66392e7f11 | ||
|
|
577fa0e2d7 | ||
|
|
9970ae3372 | ||
|
|
ca8fe2a7ec | ||
|
|
485b30adad | ||
|
|
4880a7f9f2 | ||
|
|
033de51783 |
+23
-14
@@ -2,8 +2,8 @@
|
|||||||
Contributors: biztechc
|
Contributors: biztechc
|
||||||
Tags: WP jQuery DataTable, jQuery, jQuery DataTable, Table ,DataTable
|
Tags: WP jQuery DataTable, jQuery, jQuery DataTable, Table ,DataTable
|
||||||
Requires at least: 3.6.1
|
Requires at least: 3.6.1
|
||||||
Tested up to: 5.4
|
Tested up to: 6.1.1
|
||||||
Stable tag: 2.0.1
|
Stable tag: 4.0.1
|
||||||
License: GPLv2 or later
|
License: GPLv2 or later
|
||||||
|
|
||||||
Features can be settings to meet your exact needs for your table implementations. like Paging,Ordering,search, etc...
|
Features can be settings to meet your exact needs for your table implementations. like Paging,Ordering,search, etc...
|
||||||
@@ -68,25 +68,34 @@ Is this plugin prepared for multisites? Yes.
|
|||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
= 1.0.0 =
|
= 4.0.1 =
|
||||||
* Stable Version release
|
* Compatibility with WordPress version 6.1.1
|
||||||
|
|
||||||
= 1.0.1 =
|
= 4.0.0 =
|
||||||
* Solved jquery confliction
|
* Compatibility with WordPress version 5.8
|
||||||
|
|
||||||
= 1.0.2 =
|
= 3.0.0 =
|
||||||
* Update new jquerydatatable js
|
* Compatibility with WordPress version 5.5
|
||||||
|
|
||||||
|
= 2.0.1 =
|
||||||
|
* Compatibility with WordPress version 5.4
|
||||||
|
|
||||||
|
= 2.0.0 =
|
||||||
|
* Compatibility with WordPress version 5.3
|
||||||
|
|
||||||
|
= 1.1.1 =
|
||||||
|
* Bug fixed for warnings and notices
|
||||||
|
|
||||||
= 1.1.0 =
|
= 1.1.0 =
|
||||||
* Make plugin language compatible
|
* Make plugin language compatible
|
||||||
* Bug fixed for paging and ordering
|
* Bug fixed for paging and ordering
|
||||||
|
|
||||||
= 1.1.1 =
|
= 1.0.2 =
|
||||||
* Bug fixed for warnings and notices
|
* Update new jquerydatatable js
|
||||||
|
|
||||||
= 2.0.0 =
|
= 1.0.1 =
|
||||||
* Compatibility with WordPress version 5.3
|
* Solved jquery confliction
|
||||||
|
|
||||||
= 2.0.1 =
|
= 1.0.0 =
|
||||||
* Compatibility with WordPress version 5.4
|
* Stable Version release
|
||||||
== Upgrade Notice ==
|
== Upgrade Notice ==
|
||||||
|
|||||||
@@ -4,7 +4,8 @@
|
|||||||
* Description: Features can be settings to meet your exact needs for your table implementations. like Paging,Ordering,Searching, etc...
|
* Description: Features can be settings to meet your exact needs for your table implementations. like Paging,Ordering,Searching, etc...
|
||||||
* Author: biztechc
|
* Author: biztechc
|
||||||
* Author URI: https://www.appjetty.com/
|
* Author URI: https://www.appjetty.com/
|
||||||
* Version: 2.0.1
|
* Version: 4.0.1
|
||||||
|
* WordPress Tested up to: 6.1.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
register_activation_hook( __FILE__, 'wp_jdt_activate_plugin' );
|
register_activation_hook( __FILE__, 'wp_jdt_activate_plugin' );
|
||||||
@@ -344,7 +345,7 @@ function wp_jdt_shortcode( $atts, $content = "" ) {
|
|||||||
|
|
||||||
// if 'Specific Column Order' is not null and ordring is true
|
// if 'Specific Column Order' is not null and ordring is true
|
||||||
if ( $atts['order_row_number'] != '' && $atts['ordering'] == 'true' ) {
|
if ( $atts['order_row_number'] != '' && $atts['ordering'] == 'true' ) {
|
||||||
$wp_jdt_script .= "jQuery('#$atts[id]_wrapper select')[0].options[0].selected = true;";
|
//$wp_jdt_script .= "jQuery('#$atts[id]_wrapper select')[0].options[0].selected = true;";
|
||||||
}
|
}
|
||||||
|
|
||||||
$wp_jdt_script .= "} ); \n";
|
$wp_jdt_script .= "} ); \n";
|
||||||
|
|||||||
Reference in New Issue
Block a user