Changeset 3275122
- Timestamp:
- 04/16/2025 08:39:58 PM (10 months ago)
- Location:
- woo-product-tables/trunk
- Files:
-
- 1 added
- 9 edited
-
changelog.txt (modified) (1 diff)
-
classes/frame.php (modified) (1 diff)
-
classes/tables/modules.php (modified) (1 diff)
-
classes/tables/modules_type.php (modified) (1 diff)
-
classes/tables/usage_stat.php (modified) (1 diff)
-
config.php (modified) (1 diff)
-
languages/customTitle.php (added)
-
modules/wootablepress/views/wootablepress.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
woo-producttables.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-product-tables/trunk/changelog.txt
r3261014 r3275122 1 1 *** WBW Product Table *** 2 3 2025-04-16 - version 2.1.6 4 * Fixed link View details 5 * Fixed pre-sorting by categories 6 * Minor issues fix 2 7 3 8 2025-03-24 - version 2.1.5 -
woo-product-tables/trunk/classes/frame.php
r3261014 r3275122 114 114 $this->_extractTables(); 115 115 $this->_extractModules(); 116 $this->connectLang(); 116 117 117 $this->_initModules(); 118 118 -
woo-product-tables/trunk/classes/tables/modules.php
r3261014 r3275122 5 5 $this->_id = 'id'; /*Let's associate it with posts*/ 6 6 $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); 13 13 } 14 14 } -
woo-product-tables/trunk/classes/tables/modules_type.php
r3261014 r3275122 5 5 $this->_id = 'id'; /*Let's associate it with posts*/ 6 6 $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); 9 9 } 10 10 } -
woo-product-tables/trunk/classes/tables/usage_stat.php
r3261014 r3275122 5 5 $this->_id = 'id'; 6 6 $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'); 12 12 } 13 13 } -
woo-product-tables/trunk/config.php
r3261014 r3275122 51 51 52 52 define('WTBP_PLUGIN_INSTALLED', true); 53 define('WTBP_VERSION', '2.1. 5');53 define('WTBP_VERSION', '2.1.6'); 54 54 define('WTBP_USER', 'user'); 55 55 -
woo-product-tables/trunk/modules/wootablepress/views/wootablepress.php
r3261014 r3275122 2640 2640 " INNER JOIN {$wpdb->terms} AS wtps_cat_te ON (wtps_cat_te.`term_id`=wtps_cat_tr.term_taxonomy_id)" . 2641 2641 " 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"; 2643 2643 $args['orderby'] = " wtps_cat_name, {$wpdb->posts}.post_title"; 2644 2644 -
woo-product-tables/trunk/readme.txt
r3261014 r3275122 4 4 Donate link: https://woobewoo.com/plugins/table-woocommerce-plugin/ 5 5 Requires at least: 3.3 6 Tested up to: 6. 77 Stable tag: 2.1. 56 Tested up to: 6.8 7 Stable tag: 2.1.6 8 8 9 9 Show your products in the searchable and sortable product table. WooCommerce product listings and flexible order forms with WBW Product Table … … 201 201 202 202 == Changelog == 203 204 = 2.1.6 = 205 * Fixed link View details 206 * Fixed pre-sorting by categories 207 * Minor issues fix 203 208 204 209 = 2.1.5 = -
woo-product-tables/trunk/woo-producttables.php
r3261014 r3275122 4 4 * Plugin URI: https://woobewoo.com/plugins/table-woocommerce-plugin/ 5 5 * Description: Post your product easy in tables 6 * Version: 2.1. 56 * Version: 2.1.6 7 7 * Author: woobewoo 8 8 * Author URI: https://woobewoo.com … … 10 10 * Domain Path: /languages 11 11 * WC requires at least: 3.4.0 12 * WC tested up to: 9. 7.112 * WC tested up to: 9.8.1 13 13 **/ 14 14
Note: See TracChangeset
for help on using the changeset viewer.