Changeset 2945690
- Timestamp:
- 07/31/2023 08:27:45 PM (3 years ago)
- Location:
- quiver-delivery
- Files:
-
- 7 added
- 4 edited
-
tags/1.0.16 (added)
-
tags/1.0.16/includes (added)
-
tags/1.0.16/includes/class-quiver-delivery-logger.php (added)
-
tags/1.0.16/includes/class-quiver-delivery-shipping-method.php (added)
-
tags/1.0.16/quiver-delivery.php (added)
-
tags/1.0.16/readme.md (added)
-
tags/1.0.16/readme.txt (added)
-
trunk/includes/class-quiver-delivery-shipping-method.php (modified) (2 diffs)
-
trunk/quiver-delivery.php (modified) (2 diffs)
-
trunk/readme.md (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
quiver-delivery/trunk/includes/class-quiver-delivery-shipping-method.php
r2935898 r2945690 108 108 $lineItems = []; 109 109 foreach (WC()->cart->get_cart() as $cart_item) { 110 $lineItem = [' product' => ['merchantProductId' => $this->to_external_product_id($cart_item['product_id'], $cart_item['variation_id'])], 'quantity' => $cart_item['quantity']];110 $lineItem = ['merchantProductId' => $this->to_external_product_id($cart_item['product_id'], $cart_item['variation_id']), 'quantity' => $cart_item['quantity']]; 111 111 array_push($lineItems, $lineItem); 112 112 } … … 357 357 $collectionAddress = $this->COLLECTION_ADDRESS_OVERRIDE; 358 358 } 359 $lineItem = [' product' => ['merchantProductId' => $this->to_external_product_id($item['product_id'], $item['variation_id'])], 'quantity' => $item->get_quantity()];359 $lineItem = ['merchantProductId' => $this->to_external_product_id($item['product_id'], $item['variation_id']), 'quantity' => $item->get_quantity()]; 360 360 array_push($lineItems, $lineItem); 361 361 } -
quiver-delivery/trunk/quiver-delivery.php
r2935898 r2945690 5 5 * Plugin URI: https://wordpress.org/plugins/quiver-delivery/ 6 6 * Description: Quiver provides fast and emissionless urban delivery. Magic. 7 * Version: 1.0.1 57 * Version: 1.0.16 8 8 * Author: Quiver 9 9 * Author URI: https://quiver.co.uk/ … … 24 24 { 25 25 26 private $version = "1.0.1 5";26 private $version = "1.0.16"; 27 27 28 28 /** -
quiver-delivery/trunk/readme.md
r2935898 r2945690 6 6 Tested up to: 6.0 7 7 Requires PHP: 7.0 8 Stable tag: 1.0.1 58 Stable tag: 1.0.16 9 9 WC requires at least: 3.0.0 10 10 WC tested up to: 6.6.1 … … 136 136 137 137 - Support for date specific back ordered line items. Add a value to your 'Back-ordered' meta field in the format '.. x-y Days' to set the delivery date to today + y days. 3 days will be used as a default if a value in the aforementioned format is not provided. 138 139 = 1.0.16 = 140 141 - Quiver API compatibility updates -
quiver-delivery/trunk/readme.txt
r2935898 r2945690 136 136 137 137 - Support for date specific back ordered line items. Add a value to your 'Back-ordered' meta field in the format '.. x-y Days' to set the delivery date to today + y days. 3 days will be used as a default if a value in the aforementioned format is not provided. 138 139 = 1.0.16 = 140 141 - Quiver API compatibility updates
Note: See TracChangeset
for help on using the changeset viewer.