Changeset 3475323
- Timestamp:
- 03/05/2026 08:45:40 AM (4 weeks ago)
- Location:
- api2cart-webhook-helper/trunk
- Files:
-
- 3 edited
-
a2c-webhook-helper.php (modified) (1 diff)
-
app/WH_Helper.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
api2cart-webhook-helper/trunk/a2c-webhook-helper.php
r3325524 r3475323 4 4 Description: The plugin adds extra webhook topics for WooCommerce. 5 5 Author: API2Cart 6 Version: 1.7. 46 Version: 1.7.5 7 7 Author URI: https://api2cart.com/ 8 8 License: GPL2 -
api2cart-webhook-helper/trunk/app/WH_Helper.php
r3325524 r3475323 9 9 { 10 10 11 const VERSION = '1.7. 4';11 const VERSION = '1.7.5'; 12 12 const LANG_DOMAIN = 'a2c_wh'; 13 13 … … 199 199 $current = $order->get_meta( self::METAKEY_SHIPMENT_TRACKING, true ); 200 200 201 if ( $current !== '' && $this->_tracking !== $current ) { 202 $this->afterShipmentUpdate( 0, $order->get_id(), self::METAKEY_SHIPMENT_TRACKING, $current ); 201 $currentData = ( $current !== '' ) ? $current : []; 202 203 if ( $this->_tracking !== $currentData ) { 204 $this->afterShipmentUpdate( 0, $order->get_id(), self::METAKEY_SHIPMENT_TRACKING, $currentData ); 203 205 } 204 206 } -
api2cart-webhook-helper/trunk/readme.txt
r3325524 r3475323 5 5 Requires at least: 4.1 6 6 Tested up to: 6.8 7 Stable tag: 1.7. 47 Stable tag: 1.7.5 8 8 License: GPL2 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 68 68 69 69 == Changelog == 70 = 1.7.5 = 71 * Fixed shipment deleted webhook not firing when using delete_meta_data with HPOS. 72 70 73 = 1.7.4 = 71 74 * Added support plugin Orders Tracking for WooCommerce.
Note: See TracChangeset
for help on using the changeset viewer.