Plugin Directory

Changeset 3205036


Ignore:
Timestamp:
12/09/2024 05:16:08 PM (16 months ago)
Author:
wpmethods
Message:

Fixed php timezone issue

Location:
order-list-table-elementor-widget
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • order-list-table-elementor-widget/trunk/date-ago-function.php

    r2829695 r3205036  
    44if (get_option( 'timezone_string' )) {
    55    $timezone_gmt = get_option( 'timezone_string' );
    6     date_default_timezone_set($timezone_gmt);
    76}
    87
  • order-list-table-elementor-widget/trunk/order-list-table-elementor-widget.php

    r2961348 r3205036  
    44 * Description: To show Woocommerce recent order list on a table, just use this Elementor Widget/Addon.
    55 * Plugin URI:  https://wpmethods.com/order-list-table-elementor-widget
    6  * Version:     1.0.1
     6 * Version:     1.0.2
    77 * Author:      WP Methods
    88 * Author URI:  https://wpmethods.com/
     
    1010 * License:     GPL v2 or later
    1111 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
    12  * Elementor tested up to: 3.15.3
    13  * Elementor Pro tested up to: 3.15.1
     12 * Elementor tested up to: 3.25.10
     13 * Elementor Pro tested up to: 3.25.4
    1414 */
    1515
  • order-list-table-elementor-widget/trunk/readme.txt

    r2961348 r3205036  
    33Tags: woocommerce order list, woocommerce order table, elementor widget, order list table
    44Requires at least: 5.9
    5 Tested up to: 6.3
    6 Requires PHP: 7.3
    7 Stable tag: 1.0.1
     5Tested up to: 6.7
     6Requires PHP: 7.4
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757== Screenshots ==
    5858
    59 1. Set local timezone
    60 2. Show order list from specific status
    61 3. Change table styles
    62 4. Show cutomer order information
    63 5. Change order status background, icon, text
     59
     601. Show order list from specific status
     612. Change table styles
     623. Show customer order information
     634. Change order status background, icon, text
    6464
    6565== Changelog ==
     66
     67= 1.0.2 (2024-12-09) =
     68- Fixed Time zone issue
    6669
    6770= 1.0.1 (2023-09-01) =
  • order-list-table-elementor-widget/trunk/widgets-loader.php

    r2961348 r3205036  
    2121     * @var string The addon version.
    2222     */
    23     const VERSION = '1.0.1';
     23    const VERSION = '1.0.2';
    2424
    2525    /**
     
    3737     * @var string Minimum PHP version required to run the addon.
    3838     */
    39     const MINIMUM_PHP_VERSION = '7.3';
     39    const MINIMUM_PHP_VERSION = '7.4';
    4040
    4141    /**
  • order-list-table-elementor-widget/trunk/woo-table-widgets-ele.php

    r2961348 r3205036  
    10351035        //Check WooCommerce Plugin Active or Not
    10361036        if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) :
     1037           
     1038
     1039
    10371040            //Woocommerce Order Query
    10381041            $customer_orders = get_posts(apply_filters('woocommerce_my_account_my_orders_query', array(
Note: See TracChangeset for help on using the changeset viewer.