Plugin Directory

Changeset 3174257


Ignore:
Timestamp:
10/23/2024 11:00:41 AM (18 months ago)
Author:
productfeeder
Message:

Updated to version 2.6.5

Location:
product-feeder
Files:
11 added
3 edited

Legend:

Unmodified
Added
Removed
  • product-feeder/trunk/includes/product-feeder.php

    r3174142 r3174257  
    408408                        $OrderItems[] = array(
    409409                            'ProductID' => $item->get_product_id(),
    410                             'VariationID' => $item->get_variation_id(),
     410                            'VariationID' => ($item->get_variation_id() == 0) ? $item->get_product_id() : $item->get_variation_id(),
    411411                            'Quantity' => $item->get_quantity(),
    412412                        );
     
    437437                                foreach ($JSON['ItemsToBeRejected'] as $ItemToBeRejected) {
    438438                                    $ProductID = $item->get_product_id();
    439                                     $VariationID = $item->get_variation_id();
     439                                    $VariationID = ($item->get_variation_id() == 0) ? $item->get_product_id() : $item->get_variation_id();
    440440                                    if ($ItemToBeRejected['Item']['Product']['ID'] == $ProductID && $ItemToBeRejected['Item']['Variation']['ID'] == $VariationID) {
    441441                                        $QuantityCurrent = $item->get_quantity();
  • product-feeder/trunk/product-feeder.php

    r3174142 r3174257  
    55    * Plugin URI:       https://product-feeder.com/nl/sources/wordpress-woocommerce
    66    * Description:      Connect with various marketplaces for automated synchronization of products, orders and returns! Try it now at https://product-feeder.com
    7     * Version:          2.6.4
     7    * Version:          2.6.5
    88    * Author:           Product Feeder
    99    * Author URI:       https://product-feeder.com
  • product-feeder/trunk/readme.txt

    r3174142 r3174257  
    55Requires at least: 6.0
    66Tested up to: 6.4
    7 Stable tag: 2.6.4
     7Stable tag: 2.6.5
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    162162= 2.6.4 =
    163163* Updated order handling for simple product
     164
     165= 2.6.5 =
     166* Updated order handling for simple product
Note: See TracChangeset for help on using the changeset viewer.