Plugin Directory

Changeset 2839652


Ignore:
Timestamp:
12/27/2022 05:35:56 AM (3 years ago)
Author:
wptableeditor
Message:

Other small bug fixes and stability improvements

Location:
wp-table-editor/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-table-editor/trunk/assets/css/style.css

    r2833890 r2839652  
    321321}
    322322.xscontainer .dataTables_wrapper .add_to_cart_inline input[type=number]{
    323     min-width: 75px;
    324     max-width: 100px;
     323    min-width: 65px;
     324    max-width: 80px;
     325    height: 40px;
    325326}
    326327.xscontainer .dataTables_wrapper .add_to_cart_inline input[type=number]::-webkit-inner-spin-button {
  • wp-table-editor/trunk/includes/public/shortcode.php

    r2833890 r2839652  
    490490                $output .= '</div>';
    491491                $output .= '</div>';
     492                if(is_user_logged_in() && current_user_can('manage_options')){
     493                    $output .= '<a href="wp-admin/admin.php?page=wptableeditor&tab=row&table_id='.$table_id.'&_xsnonce='.wp_create_nonce('xs-table'.$table_id).'" rel="nofollow">Edit</a>';
     494                }
    492495                ob_get_clean();
    493496                return $output;
  • wp-table-editor/trunk/main.php

    r2837460 r2839652  
    44Plugin URI: https://wptableeditor.com/documentation/
    55Description: 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.1.2
     6Version: 1.1.3
    77Author: wptableeditor.com
    88Author URI: https://wptableeditor.com/
     
    1515if ( ! defined( 'WPTABLEEDITOR_ASSETS' ) ) define( 'WPTABLEEDITOR_ASSETS', plugins_url( 'assets/', __FILE__ ) );
    1616if ( ! defined( 'WPTABLEEDITOR_VENDOR' ) ) define( 'WPTABLEEDITOR_VENDOR', plugins_url( 'vendor/', __FILE__ ) );
    17 if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.1.2' );
     17if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.1.3' );
    1818if ( ! defined( 'WPTABLEEDITOR_SLUG' ) ) define( 'WPTABLEEDITOR_SLUG', basename( plugin_dir_path( __FILE__ ) ) );
    1919if ( ! defined( 'WPTABLEEDITOR_MAIN' ) ) define( 'WPTABLEEDITOR_MAIN', plugin_basename( __FILE__ ) );
  • wp-table-editor/trunk/readme.txt

    r2837460 r2839652  
    11=== Table Editor ===
    22Contributors: Table Editor
    3 Tags: table, tables, datatables, csv, excel, csv, json
     3Tags: table, table editor, datatables, csv, excel
    44Requires at least: 5.9.3
    55Tested up to: 6.1.1
    66Requires PHP: 7.4
    7 Stable tag: 1.1.2
     7Stable tag: 1.1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7272== Changelog ==
    7373
     74= 1.1.3 =
     75* Other small bug fixes and stability improvements.
     76
    7477= 1.1.2 =
    7578* Code Optimization
Note: See TracChangeset for help on using the changeset viewer.