Changeset 2947207
- Timestamp:
- 08/03/2023 12:51:46 PM (3 years ago)
- Location:
- gelato-integration-for-woocommerce/trunk
- Files:
-
- 3 edited
-
gelato-integration-for-woocommerce.php (modified) (2 diffs)
-
includes/GelatoShipping.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gelato-integration-for-woocommerce/trunk/gelato-integration-for-woocommerce.php
r2916413 r2947207 5 5 * Plugin URI: https:// 6 6 * Description: This plugin helps to connect your WooCommerce store with Gelato . 7 * Version: 1. 1.17 * Version: 1.2.0 8 8 * Author: Gelato 9 9 * Author URI: https://gelato.com … … 12 12 */ 13 13 14 define('GELATO_VERSION', '1. 1.1');14 define('GELATO_VERSION', '1.2.0'); 15 15 define('GELATO_MINIMUM_WP_VERSION', '4.0'); 16 16 -
gelato-integration-for-woocommerce/trunk/includes/GelatoShipping.php
r2671873 r2947207 196 196 $gelatoRatesRequest['products'][] = [ 197 197 'id' => $productVariation->get_id(), 198 'quantity' => $cartItem['quantity'] 198 'quantity' => $cartItem['quantity'], 199 'parent_id' => $productVariation->get_parent_id() ?? '', 200 'sku' => $productVariation->get_sku() ?? '', 199 201 ]; 200 202 } -
gelato-integration-for-woocommerce/trunk/readme.txt
r2916413 r2947207 8 8 Requires at least: 3.8 9 9 Tested up to: 6.2 10 Stable tag: 1. 1.110 Stable tag: 1.2.0 11 11 Requires PHP: 7.0 12 12 License: GPLv2 or later … … 89 89 = 1.1.1 = 90 90 * Fixed memory limit validation 91 92 = 1.2.0 = 93 * Fixed issue with duplicate variant ids
Note: See TracChangeset
for help on using the changeset viewer.