Changeset 3449838
- Timestamp:
- 01/29/2026 05:02:04 PM (5 weeks ago)
- Location:
- aisp-order-tracking-notification/trunk
- Files:
-
- 1 added
- 3 edited
-
aisp-order-tracking-notification.php (modified) (3 diffs)
-
includes/class-aisp-order-tracking-notification-admin.php (modified) (1 diff)
-
includes/class-aisp-order-tracking-notification-orders-column.php (added)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
aisp-order-tracking-notification/trunk/aisp-order-tracking-notification.php
r3448830 r3449838 5 5 * Author URI: https://aispdev.com 6 6 * Description: Simple tracking plugin to add tracking number and carrier to WooCommerce orders and show them in customer emails. 7 * Version: 1. 2.17 * Version: 1.3.0 8 8 * Requires at least: 5.0 9 9 * Requires PHP: 7.2 … … 37 37 require_once AISP_ORDER_TRACKING_NOTIFICATION_PLUGIN_DIR . 'includes/class-aisp-order-tracking-notification-settings.php'; 38 38 require_once AISP_ORDER_TRACKING_NOTIFICATION_PLUGIN_DIR . 'includes/class-aisp-order-tracking-notification-webhook.php'; 39 require_once AISP_ORDER_TRACKING_NOTIFICATION_PLUGIN_DIR . 'includes/class-aisp-order-tracking-notification-orders-column.php'; 39 40 40 41 AISP_order_tracking_notification_Settings::init(); 41 42 AISP_order_tracking_notification_Webhook::init(); 43 42 44 43 45 function aisp_order_tracking_notification_init_plugin() { … … 45 47 aisp_order_tracking_notification_Admin::get_instance(); 46 48 aisp_order_tracking_notification_Email::get_instance(); 47 49 AISP_Order_Tracking_Notification_Orders_Column::get_instance(); 48 50 } 49 51 add_action( 'plugins_loaded', 'aisp_order_tracking_notification_init_plugin' ); -
aisp-order-tracking-notification/trunk/includes/class-aisp-order-tracking-notification-admin.php
r3440597 r3449838 42 42 add_meta_box( 43 43 'aisp_order_tracking_notification_meta_box', 44 __( ' AISPOrder Tracking Notification', 'aisp-order-tracking-notification' ),44 __( 'Order Tracking Notification', 'aisp-order-tracking-notification' ), 45 45 [ $this, 'render_meta_box' ], 46 46 'shop_order', -
aisp-order-tracking-notification/trunk/readme.txt
r3448830 r3449838 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.2 8 Stable tag: 1. 2.18 Stable tag: 1.3.0 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 89 89 == Changelog == 90 90 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 91 99 = 1.2.1 = 92 *Enhanced :internationalization and escaping in email settings.100 *Enhanced internationalization and escaping in email settings. 93 101 94 102 = 1.2.0 = … … 109 117 == Upgrade Notice == 110 118 119 = 1.3.0 = 120 This 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 111 122 = 1.2.0 = 112 123 This update introduces a new “Number of boxes” field in the WooCommerce order admin screen.
Note: See TracChangeset
for help on using the changeset viewer.