Plugin Directory

Changeset 3436908


Ignore:
Timestamp:
01/11/2026 04:48:27 AM (3 months ago)
Author:
codersaiful
Message:

latest version trunk update here

Location:
woo-product-table/trunk
Files:
21 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • woo-product-table/trunk/admin/tabs/options.php

    r3420662 r3436908  
    3232                    <div class="custom-select-box-wrapper sfl-auto-gen-box">
    3333                        <?php
    34                         // Default to 'on' for new tables (when meta doesn't exist)
    35                         $export_enable = isset( $meta_basics['export_enable'] ) ? $meta_basics['export_enable'] : 'on';
     34                        // Default to 'off' for new tables (when meta doesn't exist)
     35                        $export_enable = isset( $meta_basics['export_enable'] ) ? $meta_basics['export_enable'] : 'off';
    3636                        ?>
    3737                        <input type="hidden" name="basics[export_enable]"
  • woo-product-table/trunk/inc/shortcode.php

    r3420662 r3436908  
    11471147    public function export_button_render(){
    11481148        // Check if export is enabled (default to 'on' for new tables)
    1149         $export_enabled = isset( $this->basics['export_enable'] ) ? $this->basics['export_enable'] === 'on' : true;
     1149        $export_enabled = isset( $this->basics['export_enable'] ) && $this->basics['export_enable'] === 'on' ? true : false;
    11501150        if( ! $export_enabled ) return;
    11511151
  • woo-product-table/trunk/includes/items/total.php

    r2823496 r3436908  
    44$thousand_separator = wc_get_price_thousand_separator();
    55$number_of_decimal = wc_get_price_decimals();
    6 $founded_price = !empty($data['price'] ) && is_numeric($data['price']) ? $data['price'] : 0;
     6// $founded_price = !empty($data['price'] ) && is_numeric($data['price']) ? $data['price'] : 0;
     7$founded_price = wc_get_price_to_display($product);
    78$wpt_display_total = $founded_price * $default_quantity;
    89
  • woo-product-table/trunk/readme.txt

    r3420662 r3436908  
    11=== Product Table for WooCommerce ===
    2 Contributors: codersaiful,bizzplugin,mdibrahimk48,ultraaddons,unikforce,fazlebari
     2Contributors: codersaiful,bizzplugin,mdibrahimk48
    33Donate link: https://donate.stripe.com/4gw2bB2Pzdjd8mYfYZ
    44Tags: woo product table, wc product table, woo table, woocommerce product table, product table
    55Requires at least: 6.2
    66Tested up to: 6.9
    7 Stable tag: 5.0.9
     7Stable tag: 5.1.0
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    337337== Changelog ==
    338338
     339= 5.1.0 =
     340* Fixed: Table export issue fixed.
     341* Fixed: Total column issue fixed.
     342* Added: Option to choose columns for export.
     343* Improved: Table export functionality improved.
     344
    339345= 5.0.9 =
    340346* Added: Table export as PDF,
  • woo-product-table/trunk/woo-product-table.php

    r3420662 r3436908  
    1010 * Tags: wooproducttable, woocommerce product list,woocommerce product table, wc product table, product grid view, inventory, shop product table
    1111 *
    12  * Version: 5.0.9
     12 * Version: 5.1.0
    1313 * Requires at least:    6.2
    1414 * Tested up to:         6.9
Note: See TracChangeset for help on using the changeset viewer.