Changeset 3174142
- Timestamp:
- 10/23/2024 08:41:15 AM (18 months ago)
- Location:
- product-feeder
- Files:
-
- 11 added
- 4 edited
-
tags/2.6.3/includes/product-feeder.php (modified) (2 diffs)
-
tags/2.6.4 (added)
-
tags/2.6.4/includes (added)
-
tags/2.6.4/includes/css (added)
-
tags/2.6.4/includes/css/product-feeder.css (added)
-
tags/2.6.4/includes/product-feeder.php (added)
-
tags/2.6.4/languages (added)
-
tags/2.6.4/languages/product-feeder-nl_NL.mo (added)
-
tags/2.6.4/languages/product-feeder-nl_NL.po (added)
-
tags/2.6.4/product-feeder.php (added)
-
tags/2.6.4/readme.txt (added)
-
tags/2.6.4/uninstall.php (added)
-
trunk/includes/product-feeder.php (modified) (1 diff)
-
trunk/product-feeder.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
product-feeder/tags/2.6.3/includes/product-feeder.php
r3174110 r3174142 662 662 if (!empty($Terms)) { 663 663 $Value = implode(' ', $Terms); 664 $OptionValue = 'category_'.$OptionValue;665 664 if (in_array($OptionValue, $Options['Brand']) && empty($ProductData['Brand'])) $ProductData['Brand'] = $Value; 666 665 if (in_array($OptionValue, $Options['Color']) && empty($ProductColor)) $ProductColor = $Value; … … 820 819 if (!empty($Terms)) { 821 820 $Value = implode(' ', $Terms); 822 $OptionValue = 'category_'.$OptionValue;823 821 if (in_array($OptionValue, $Options['Brand']) && empty($ProductData['Brand'])) $ProductData['Brand'] = $Value; 824 822 if (in_array($OptionValue, $Options['EAN']) && empty($VariationData['EAN'])) $VariationData['EAN'] = $Value; -
product-feeder/trunk/includes/product-feeder.php
r3174117 r3174142 324 324 $product = wc_get_product($Item['ProductID']); 325 325 if ($product instanceof WC_Product) { 326 if ( in_array($Item['VariationID'], $product->get_children())) {326 if (($product->get_type() == 'simple' && $Item['VariationID'] == $Item['ProductID']) || in_array($Item['VariationID'], $product->get_children())) { 327 327 $variation = wc_get_product($Item['VariationID']); 328 328 if ($variation instanceof WC_Product) $ItemsToAddToOrder[] = array('Variation' => $variation, 'Quantity' => $Item['Quantity']); -
product-feeder/trunk/product-feeder.php
r3174110 r3174142 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. 37 * Version: 2.6.4 8 8 * Author: Product Feeder 9 9 * Author URI: https://product-feeder.com -
product-feeder/trunk/readme.txt
r3174110 r3174142 5 5 Requires at least: 6.0 6 6 Tested up to: 6.4 7 Stable tag: 2.6. 37 Stable tag: 2.6.4 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 159 159 = 2.6.3 = 160 160 * Updated taxonomy bug 161 162 = 2.6.4 = 163 * Updated order handling for simple product
Note: See TracChangeset
for help on using the changeset viewer.