Changeset 3174257
- Timestamp:
- 10/23/2024 11:00:41 AM (18 months ago)
- Location:
- product-feeder
- Files:
-
- 11 added
- 3 edited
-
tags/2.6.5 (added)
-
tags/2.6.5/includes (added)
-
tags/2.6.5/includes/css (added)
-
tags/2.6.5/includes/css/product-feeder.css (added)
-
tags/2.6.5/includes/product-feeder.php (added)
-
tags/2.6.5/languages (added)
-
tags/2.6.5/languages/product-feeder-nl_NL.mo (added)
-
tags/2.6.5/languages/product-feeder-nl_NL.po (added)
-
tags/2.6.5/product-feeder.php (added)
-
tags/2.6.5/readme.txt (added)
-
tags/2.6.5/uninstall.php (added)
-
trunk/includes/product-feeder.php (modified) (2 diffs)
-
trunk/product-feeder.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
product-feeder/trunk/includes/product-feeder.php
r3174142 r3174257 408 408 $OrderItems[] = array( 409 409 '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(), 411 411 'Quantity' => $item->get_quantity(), 412 412 ); … … 437 437 foreach ($JSON['ItemsToBeRejected'] as $ItemToBeRejected) { 438 438 $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(); 440 440 if ($ItemToBeRejected['Item']['Product']['ID'] == $ProductID && $ItemToBeRejected['Item']['Variation']['ID'] == $VariationID) { 441 441 $QuantityCurrent = $item->get_quantity(); -
product-feeder/trunk/product-feeder.php
r3174142 r3174257 5 5 * Plugin URI: https://product-feeder.com/nl/sources/wordpress-woocommerce 6 6 * 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. 47 * Version: 2.6.5 8 8 * Author: Product Feeder 9 9 * Author URI: https://product-feeder.com -
product-feeder/trunk/readme.txt
r3174142 r3174257 5 5 Requires at least: 6.0 6 6 Tested up to: 6.4 7 Stable tag: 2.6. 47 Stable tag: 2.6.5 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 162 162 = 2.6.4 = 163 163 * 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.