Changeset 2798677
- Timestamp:
- 10/14/2022 07:13:11 AM (3 years ago)
- Location:
- delyvax/trunk
- Files:
-
- 3 edited
-
delyvax.php (modified) (2 diffs)
-
functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
delyvax/trunk/delyvax.php
r2742555 r2798677 4 4 Plugin URI: https://delyva.com 5 5 description: The official Delyva plugin helps store owners to integrate WooCommerce with [Delyva](https://delyva.com) for seamless service comparison and order processing. 6 Version: 1.1.3 06 Version: 1.1.31 7 7 Author: Delyva 8 8 Author URI: https://delyva.com … … 13 13 defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); 14 14 define('DELYVAX_API_ENDPOINT', 'https://api.delyva.app/'); 15 define('DELYVAX_PLUGIN_VERSION', '1.1.3 0');15 define('DELYVAX_PLUGIN_VERSION', '1.1.31'); 16 16 17 17 require_once plugin_dir_path(__FILE__) . 'functions.php'; -
delyvax/trunk/functions.php
r2701710 r2798677 483 483 if($include_order_note != 'empty') $order_notes = 'Order No: #'.$main_order->get_id().':'; 484 484 485 486 foreach ( $sub_order->get_items() as $item ) 487 { 488 $product_id = $item->get_product_id(); 489 } 485 foreach ( $main_order->get_items() as $item ) 486 { 487 $product_id = $item->get_product_id(); 488 } 490 489 491 490 foreach ($sub_orders as $sub) -
delyvax/trunk/readme.txt
r2742555 r2798677 4 4 Requires at least: 5.4 5 5 Tested up to: 5.7 6 Stable tag: 1.1.3 06 Stable tag: 1.1.31 7 7 Requires PHP: 7.2 8 8 License: GPLv3 … … 32 32 33 33 == Changelog == 34 35 = 1.1.31 = 36 *Release Date - 14th October 2022* 37 38 * Fixed create delivery order issue for sub-order. 34 39 35 40 = 1.1.30 =
Note: See TracChangeset
for help on using the changeset viewer.