Plugin Directory

Changeset 2947207


Ignore:
Timestamp:
08/03/2023 12:51:46 PM (3 years ago)
Author:
gelatoapi
Message:

fixed issue with shipping

Location:
gelato-integration-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • gelato-integration-for-woocommerce/trunk/gelato-integration-for-woocommerce.php

    r2916413 r2947207  
    55 * Plugin URI: https://
    66 * Description: This plugin helps to connect your WooCommerce store with Gelato .
    7  * Version: 1.1.1
     7 * Version: 1.2.0
    88 * Author: Gelato
    99 * Author URI: https://gelato.com
     
    1212 */
    1313
    14 define('GELATO_VERSION', '1.1.1');
     14define('GELATO_VERSION', '1.2.0');
    1515define('GELATO_MINIMUM_WP_VERSION', '4.0');
    1616
  • gelato-integration-for-woocommerce/trunk/includes/GelatoShipping.php

    r2671873 r2947207  
    196196                        $gelatoRatesRequest['products'][] = [
    197197                            'id' => $productVariation->get_id(),
    198                             'quantity' => $cartItem['quantity']
     198                            'quantity' => $cartItem['quantity'],
     199                            'parent_id' => $productVariation->get_parent_id() ?? '',
     200                            'sku' => $productVariation->get_sku() ?? '',
    199201                        ];
    200202                    }
  • gelato-integration-for-woocommerce/trunk/readme.txt

    r2916413 r2947207  
    88Requires at least: 3.8
    99Tested up to: 6.2
    10 Stable tag: 1.1.1
     10Stable tag: 1.2.0
    1111Requires PHP: 7.0
    1212License: GPLv2 or later
     
    8989= 1.1.1 =
    9090* 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.