Plugin Directory

Changeset 3487389


Ignore:
Timestamp:
03/20/2026 06:13:48 PM (2 weeks ago)
Author:
fusionplugin
Message:

Version Update

Location:
table-addons-for-elementor
Files:
56 added
3 edited

Legend:

Unmodified
Added
Removed
  • table-addons-for-elementor/trunk/README.txt

    r3397439 r3487389  
    44Tags: elementor table, table, table for elementor, table builder, table plugin
    55Requires at least: 3.0.1
    6 Tested up to: 6.8.3
    7 Stable tag: 2.1.5
     6Tested up to: 6.9.4
     7Stable tag: 2.1.6
    88Requires PHP: 7.0.0
    99License: GPLv2 or later
     
    112112
    113113== Changelog ==
     114= 2.1.6 =
     115* Other: Compatible with WordPress 6.9.4
     116* Other: Compatible with Elementor 3.35.7
    114117
    115118= 2.1.5 =
  • table-addons-for-elementor/trunk/includes/class-table-addons-for-elementor.php

    r3088274 r3487389  
    142142        $plugin_admin = new Table_Addons_For_Elementor_Admin( $this->get_plugin_name(), $this->get_version() );
    143143
     144        // Initialize Plugin Insights
     145        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-table-addons-for-elementor-insights.php';
     146        Table_Addons_For_Elementor_Insights::instance();
     147
     148        // Rating notice
     149        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-table-addons-for-elementor-rating.php';
     150        Table_Addons_For_Elementor_Rating::instance();
     151
    144152        $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
    145153        $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_scripts' );
  • table-addons-for-elementor/trunk/table-addons-for-elementor.php

    r3397439 r3487389  
    44 * Description: Table Widget for elementor page builder. Effortlessly create stunning and functional tables on Elementor.
    55 * Plugin URI:  https://fusionplugin.com/plugins/table-addons-for-elementor/
    6  * Version:     2.1.5
    7  * Elementor tested up to: 3.33.1
    8  * Elementor Pro tested up to: 3.32.3
     6 * Version:     2.1.6
     7 * Elementor tested up to: 3.35.7
     8 * Elementor Pro tested up to: 3.35.1
    99 * Author:      FusionPlugin
    1010 * Author URI:  https://fusionplugin.com/
     
    2424 * Currently plugin version.
    2525 */
    26 define( 'TABLE_ADDONS_FOR_ELEMENTOR_VERSION', '2.1.5' );
     26define( 'TABLE_ADDONS_FOR_ELEMENTOR_VERSION', '2.1.6' );
     27define( 'TABLE_ADDONS_FOR_ELEMENTOR__FILE', __FILE__ );
    2728define( 'TABLE_ADDONS_FOR_ELEMENTOR__BASE', plugin_basename( __FILE__ ) );
     29define( 'TABLE_ADDONS_FOR_ELEMENTOR__PATH', plugin_dir_path( __FILE__ ) );
    2830
    2931/**
     
    8587}
    8688
    87 appsero_init_tracker_table_addons_for_elementor();
     89//appsero_init_tracker_table_addons_for_elementor();
Note: See TracChangeset for help on using the changeset viewer.