Plugin Directory

Changeset 3449838


Ignore:
Timestamp:
01/29/2026 05:02:04 PM (5 weeks ago)
Author:
aisimpleplugin
Message:

Release 1.3.0 Added a new Tracking column in the WooCommerce orders list.

Location:
aisp-order-tracking-notification/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • aisp-order-tracking-notification/trunk/aisp-order-tracking-notification.php

    r3448830 r3449838  
    55 * Author URI: https://aispdev.com
    66 * Description: Simple tracking plugin to add tracking number and carrier to WooCommerce orders and show them in customer emails.
    7  * Version:     1.2.1
     7 * Version:     1.3.0
    88 * Requires at least: 5.0
    99 * Requires PHP: 7.2
     
    3737require_once AISP_ORDER_TRACKING_NOTIFICATION_PLUGIN_DIR . 'includes/class-aisp-order-tracking-notification-settings.php';
    3838require_once AISP_ORDER_TRACKING_NOTIFICATION_PLUGIN_DIR . 'includes/class-aisp-order-tracking-notification-webhook.php';
     39require_once AISP_ORDER_TRACKING_NOTIFICATION_PLUGIN_DIR . 'includes/class-aisp-order-tracking-notification-orders-column.php';
    3940
    4041AISP_order_tracking_notification_Settings::init();
    4142AISP_order_tracking_notification_Webhook::init();
     43
    4244
    4345function aisp_order_tracking_notification_init_plugin() {
     
    4547    aisp_order_tracking_notification_Admin::get_instance();
    4648    aisp_order_tracking_notification_Email::get_instance();
    47    
     49    AISP_Order_Tracking_Notification_Orders_Column::get_instance();
    4850}
    4951add_action( 'plugins_loaded', 'aisp_order_tracking_notification_init_plugin' );
  • aisp-order-tracking-notification/trunk/includes/class-aisp-order-tracking-notification-admin.php

    r3440597 r3449838  
    4242        add_meta_box(
    4343            'aisp_order_tracking_notification_meta_box',
    44             __( 'AISP Order Tracking Notification', 'aisp-order-tracking-notification' ),
     44            __( 'Order Tracking Notification', 'aisp-order-tracking-notification' ),
    4545            [ $this, 'render_meta_box' ],
    4646            'shop_order',
  • aisp-order-tracking-notification/trunk/readme.txt

    r3448830 r3449838  
    66Tested up to: 6.9
    77Requires PHP: 7.2
    8 Stable tag: 1.2.1
     8Stable tag: 1.3.0
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8989== Changelog ==
    9090
     91= 1.3.0 =
     92* Added a new Tracking column in the WooCommerce orders list.
     93* Display carrier name, tracking number, and number of boxes directly in the orders table.
     94* Tracking number is now clickable and opens the carrier tracking page in a new tab.
     95* Fully compatible with both legacy orders screen and the new WooCommerce Orders interface (HPOS).
     96* Improved admin usability by making tracking information visible without opening the order.
     97
     98
    9199= 1.2.1 =
    92 *Enhanced: internationalization and escaping in email settings.
     100*Enhanced internationalization and escaping in email settings.
    93101
    94102= 1.2.0 =
     
    109117== Upgrade Notice ==
    110118
     119= 1.3.0 =
     120This update adds a new Tracking column to the WooCommerce orders list, showing carrier name, clickable tracking number, and box count directly in the admin. Fully compatible with the new WooCommerce Orders screen and HPOS. No action required after update.
     121
    111122= 1.2.0 =
    112123This update introduces a new “Number of boxes” field in the WooCommerce order admin screen.
Note: See TracChangeset for help on using the changeset viewer.