Compare commits

..
6 Commits
Author SHA1 Message Date
biztechc 3de35c30d7 tagging version 4.0.1 2024-12-26 13:05:47 +00:00
biztechc a9143409e6 compatible with 6.1.1 2022-12-23 07:29:19 +00:00
biztechc f1a8c171bb compatible with 5.8 2021-08-05 09:45:01 +00:00
biztechc 97dd64349c Compatibility with 5.5 2020-09-09 10:40:40 +00:00
biztechc 4855b9d6ab Compatibility with 5.4 2020-04-02 11:11:32 +00:00
biztechc 208bdd29d7 Compatibility with WordPress version 5.3 2019-12-26 09:46:49 +00:00
2 changed files with 27 additions and 12 deletions
+24 -10
View File
@@ -2,8 +2,8 @@
Contributors: biztechc
Tags: WP jQuery DataTable, jQuery, jQuery DataTable, Table ,DataTable
Requires at least: 3.6.1
Tested up to: 5.0
Stable tag: 1.1.1
Tested up to: 6.1.1
Stable tag: 4.0.1
License: GPLv2 or later
Features can be settings to meet your exact needs for your table implementations. like Paging,Ordering,search, etc...
@@ -68,20 +68,34 @@ Is this plugin prepared for multisites? Yes.
== Changelog ==
= 1.0.0 =
* Stable Version release
= 4.0.1 =
* Compatibility with WordPress version 6.1.1
= 1.0.1 =
* Solved jquery confliction
= 4.0.0 =
* Compatibility with WordPress version 5.8
= 1.0.2 =
* Update new jquerydatatable js
= 3.0.0 =
* 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 =
* Make plugin language compatible
* Bug fixed for paging and ordering
= 1.1.1 =
* Bug fixed for warnings and notices
= 1.0.2 =
* Update new jquerydatatable js
= 1.0.1 =
* Solved jquery confliction
= 1.0.0 =
* Stable Version release
== Upgrade Notice ==
+3 -2
View File
@@ -4,7 +4,8 @@
* Description: Features can be settings to meet your exact needs for your table implementations. like Paging,Ordering,Searching, etc...
* Author: biztechc
* Author URI: https://www.appjetty.com/
* Version: 1.1.1
* Version: 4.0.1
* WordPress Tested up to: 6.1.1
*/
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 ( $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";