Plugin Directory

Changeset 3275122


Ignore:
Timestamp:
04/16/2025 08:39:58 PM (10 months ago)
Author:
woobewoo
Message:

version 2.1.6

Location:
woo-product-tables/trunk
Files:
1 added
9 edited

Legend:

Unmodified
Added
Removed
  • woo-product-tables/trunk/changelog.txt

    r3261014 r3275122  
    11*** WBW Product Table ***
     2
     32025-04-16 - version 2.1.6
     4* Fixed link View details
     5* Fixed pre-sorting by categories
     6* Minor issues fix
    27
    382025-03-24 - version 2.1.5
  • woo-product-tables/trunk/classes/frame.php

    r3261014 r3275122  
    114114        $this->_extractTables();
    115115        $this->_extractModules();
    116         $this->connectLang();
     116
    117117        $this->_initModules();
    118118
  • woo-product-tables/trunk/classes/tables/modules.php

    r3261014 r3275122  
    55        $this->_id = 'id';     /*Let's associate it with posts*/
    66        $this->_alias = 'sup_m';
    7         $this->_addField('label', 'text', 'varchar', 0, esc_html__('Label', 'woo-product-tables'), 128)
    8                 ->_addField('type_id', 'selectbox', 'smallint', 0, esc_html__('Type', 'woo-product-tables'))
    9                 ->_addField('active', 'checkbox', 'tinyint', 0, esc_html__('Active', 'woo-product-tables'))
    10                 ->_addField('params', 'textarea', 'text', 0, esc_html__('Params', 'woo-product-tables'))
    11                 ->_addField('code', 'hidden', 'varchar', '', esc_html__('Code', 'woo-product-tables'), 64)
    12                 ->_addField('ex_plug_dir', 'hidden', 'varchar', '', esc_html__('External plugin directory', 'woo-product-tables'), 255);
     7        $this->_addField('label', 'text', 'varchar', 0, 'Label', 128)
     8                ->_addField('type_id', 'selectbox', 'smallint', 0, 'Type')
     9                ->_addField('active', 'checkbox', 'tinyint', 0, 'Active')
     10                ->_addField('params', 'textarea', 'text', 0, 'Params')
     11                ->_addField('code', 'hidden', 'varchar', '', 'Code', 64)
     12                ->_addField('ex_plug_dir', 'hidden', 'varchar', '', 'External plugin directory', 255);
    1313    }
    1414}
  • woo-product-tables/trunk/classes/tables/modules_type.php

    r3261014 r3275122  
    55        $this->_id = 'id';     /*Let's associate it with posts*/
    66        $this->_alias = 'sup_m_t';
    7         $this->_addField($this->_id, 'text', 'int', '', esc_html__('ID', 'woo-product-tables'))->
    8                 _addField('label', 'text', 'varchar', '', esc_html__('Label', 'woo-product-tables'), 128);
     7        $this->_addField($this->_id, 'text', 'int', '', 'ID')->
     8                _addField('label', 'text', 'varchar', '', 'Label', 128);
    99    }
    1010}
  • woo-product-tables/trunk/classes/tables/usage_stat.php

    r3261014 r3275122  
    55        $this->_id = 'id';     
    66        $this->_alias = 'sup_usage_stat';
    7         $this->_addField('id', 'hidden', 'int', 0, esc_html__('id', 'woo-product-tables'))
    8             ->_addField('code', 'hidden', 'text', 0, esc_html__('code', 'woo-product-tables'))
    9             ->_addField('visits', 'hidden', 'int', 0, esc_html__('visits', 'woo-product-tables'))
    10             ->_addField('spent_time', 'hidden', 'int', 0, esc_html__('spent_time', 'woo-product-tables'))
    11             ->_addField('modify_timestamp', 'hidden', 'int', 0, esc_html__('modify_timestamp', 'woo-product-tables'));
     7        $this->_addField('id', 'hidden', 'int', 0, 'id')
     8            ->_addField('code', 'hidden', 'text', 0, 'code')
     9            ->_addField('visits', 'hidden', 'int', 0, 'visits')
     10            ->_addField('spent_time', 'hidden', 'int', 0, 'spent_time')
     11            ->_addField('modify_timestamp', 'hidden', 'int', 0, 'modify_timestamp');
    1212    }
    1313}
  • woo-product-tables/trunk/config.php

    r3261014 r3275122  
    5151
    5252define('WTBP_PLUGIN_INSTALLED', true);
    53 define('WTBP_VERSION', '2.1.5');
     53define('WTBP_VERSION', '2.1.6');
    5454define('WTBP_USER', 'user');
    5555
  • woo-product-tables/trunk/modules/wootablepress/views/wootablepress.php

    r3261014 r3275122  
    26402640            " INNER JOIN {$wpdb->terms} AS wtps_cat_te ON (wtps_cat_te.`term_id`=wtps_cat_tr.term_taxonomy_id)" .
    26412641            " INNER JOIN {$wpdb->term_taxonomy} AS wtps_cat_tt ON (wtps_cat_tt.`taxonomy`='product_cat' AND wtps_cat_tt.term_taxonomy_id=wtps_cat_tr.term_taxonomy_id)" .
    2642             ' WHERE wtps_cat_tr.`object_id`=wp_posts.ID) as wtps_cat_name';
     2642            " WHERE wtps_cat_tr.`object_id`={$wpdb->posts}.ID) as wtps_cat_name";
    26432643         $args['orderby'] = " wtps_cat_name, {$wpdb->posts}.post_title";
    26442644
  • woo-product-tables/trunk/readme.txt

    r3261014 r3275122  
    44Donate link: https://woobewoo.com/plugins/table-woocommerce-plugin/
    55Requires at least: 3.3
    6 Tested up to: 6.7
    7 Stable tag: 2.1.5
     6Tested up to: 6.8
     7Stable tag: 2.1.6
    88
    99Show your products in the searchable and sortable product table. WooCommerce product listings and flexible order forms with WBW Product Table
     
    201201
    202202== Changelog ==
     203
     204= 2.1.6 =
     205* Fixed link View details
     206* Fixed pre-sorting by categories
     207* Minor issues fix
    203208
    204209= 2.1.5 =
  • woo-product-tables/trunk/woo-producttables.php

    r3261014 r3275122  
    44 * Plugin URI: https://woobewoo.com/plugins/table-woocommerce-plugin/
    55 * Description: Post your product easy in tables
    6  * Version: 2.1.5
     6 * Version: 2.1.6
    77 * Author: woobewoo
    88 * Author URI: https://woobewoo.com
     
    1010 * Domain Path: /languages
    1111 * WC requires at least: 3.4.0
    12  * WC tested up to: 9.7.1
     12 * WC tested up to: 9.8.1
    1313 **/
    1414
Note: See TracChangeset for help on using the changeset viewer.