Changeset 2994474
- Timestamp:
- 11/11/2023 03:48:00 PM (2 years ago)
- Location:
- wp-table-editor/trunk
- Files:
-
- 4 edited
-
assets/js/shortcode.js (modified) (1 diff)
-
includes/public/shortcode.php (modified) (3 diffs)
-
main.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-table-editor/trunk/assets/js/shortcode.js
r2944715 r2994474 188 188 } 189 189 function dataRecord(shortcode){ 190 if(shortcode.table_footer === 'yes'){ 191 $('#'+shortcode.html_id+'_tfoot').show(); 192 } 193 if(shortcode.dataSet === ''){ 194 $('#'+shortcode.html_id+'_head').show(); 195 } 190 196 if(JSON.parse(shortcode.responsive) !== true && JSON.parse(shortcode.scrollY) > 0 && JSON.parse(shortcode.paging) === true){ 191 197 $("#"+shortcode.html_id).addClass("nowrap"); -
wp-table-editor/trunk/includes/public/shortcode.php
r2985570 r2994474 570 570 $output .= '<table class="stripe xs-w-100 xs-b-spacing xs-m-bottom" id="'.$html_id.'">'; 571 571 $output .= '<thead class="'.$html_id.'_thead">'; 572 /*573 572 if(empty($dataSet)){ 574 $output .= '<tr class="'.$html_id.'_head" >';573 $output .= '<tr class="'.$html_id.'_head" id="'.$html_id.'_head" style="display:none">'; 575 574 $i = 0; 576 575 $output .= '<th class="'.$html_id.'_head_'.$i.'">ID</th>'; … … 584 583 $output .= '</tr>'; 585 584 } 586 */587 585 $output .= '</thead>'; 588 586 $output .= '<tbody class="'.$html_id.'_tbody"></tbody>'; 589 587 if($table_footer === 'yes' && empty($dataSet)){ 590 588 $i = 0; 591 $output .= '<tfoot class="'.$html_id.'_tfoot" ><tr class="'.$html_id.'_foot">';589 $output .= '<tfoot class="'.$html_id.'_tfoot" id="'.$html_id.'_tfoot" style="display:none"><tr class="'.$html_id.'_foot">'; 592 590 $output .= '<th class="'.$html_id.'_foot_'.$i.'">ID</th>'; 593 591 foreach($column_names as $_names){ … … 608 606 } 609 607 ob_get_clean(); 610 //include 'non_ajax.php';611 608 return $output; 612 609 }else{ -
wp-table-editor/trunk/main.php
r2985570 r2994474 4 4 Plugin URI: https://wptableeditor.com/documentation/ 5 5 Description: Table Editor is a WordPress plugin used to quickly create tables from Excel, CSV, JSON and other data sources. Allows you to create beautiful sortable and responsive tables inside your posts, pages, custom post types or widget area. 6 Version: 1.3. 76 Version: 1.3.8 7 7 Author: wptableeditor.com 8 8 Author URI: https://wptableeditor.com/ … … 15 15 if ( ! defined( 'WPTABLEEDITOR_ASSETS' ) ) define( 'WPTABLEEDITOR_ASSETS', plugins_url( 'assets/', __FILE__ ) ); 16 16 if ( ! defined( 'WPTABLEEDITOR_VENDOR' ) ) define( 'WPTABLEEDITOR_VENDOR', plugins_url( 'vendor/', __FILE__ ) ); 17 if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.3. 7' );17 if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.3.8' ); 18 18 if ( ! defined( 'WPTABLEEDITOR_SLUG' ) ) define( 'WPTABLEEDITOR_SLUG', basename( plugin_dir_path( __FILE__ ) ) ); 19 19 if ( ! defined( 'WPTABLEEDITOR_MAIN' ) ) define( 'WPTABLEEDITOR_MAIN', plugin_basename( __FILE__ ) ); -
wp-table-editor/trunk/readme.txt
r2985570 r2994474 3 3 Tags: table, table builder, table editor, datatables 4 4 Requires at least: 5.9.3 5 Tested up to: 6.4 5 Tested up to: 6.4.1 6 6 Requires PHP: 7.4 7 Stable tag: 1.3. 77 Stable tag: 1.3.8 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 74 74 75 75 == Changelog == 76 77 = 1.3.8 = 78 * Code Optimization 76 79 77 80 = 1.3.7 =
Note: See TracChangeset
for help on using the changeset viewer.