Plugin Directory

Changeset 3174142


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

Updated to version 2.6.4

Location:
product-feeder
Files:
11 added
4 edited

Legend:

Unmodified
Added
Removed
  • product-feeder/tags/2.6.3/includes/product-feeder.php

    r3174110 r3174142  
    662662                                    if (!empty($Terms)) {
    663663                                        $Value = implode(' ', $Terms);
    664                                         $OptionValue = 'category_'.$OptionValue;
    665664                                        if (in_array($OptionValue, $Options['Brand']) && empty($ProductData['Brand'])) $ProductData['Brand'] = $Value;
    666665                                        if (in_array($OptionValue, $Options['Color']) && empty($ProductColor)) $ProductColor = $Value;
     
    820819                        if (!empty($Terms)) {
    821820                            $Value = implode(' ', $Terms);
    822                             $OptionValue = 'category_'.$OptionValue;
    823821                            if (in_array($OptionValue, $Options['Brand']) && empty($ProductData['Brand'])) $ProductData['Brand'] = $Value;
    824822                            if (in_array($OptionValue, $Options['EAN']) && empty($VariationData['EAN'])) $VariationData['EAN'] = $Value;
  • product-feeder/trunk/includes/product-feeder.php

    r3174117 r3174142  
    324324                                    $product = wc_get_product($Item['ProductID']);
    325325                                    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())) {
    327327                                            $variation = wc_get_product($Item['VariationID']);
    328328                                            if ($variation instanceof WC_Product) $ItemsToAddToOrder[] = array('Variation' => $variation, 'Quantity' => $Item['Quantity']);
  • product-feeder/trunk/product-feeder.php

    r3174110 r3174142  
    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.3
     7    * Version:          2.6.4
    88    * Author:           Product Feeder
    99    * Author URI:       https://product-feeder.com
  • product-feeder/trunk/readme.txt

    r3174110 r3174142  
    55Requires at least: 6.0
    66Tested up to: 6.4
    7 Stable tag: 2.6.3
     7Stable tag: 2.6.4
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    159159= 2.6.3 =
    160160* 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.