Plugin Directory

Changeset 3240994


Ignore:
Timestamp:
02/15/2025 01:34:57 PM (12 months ago)
Author:
kovalchik8
Message:

Fixed WooCommerce HPOS Identification for shop orders import

Location:
magic-export-import/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • magic-export-import/trunk/class-magic-ex-im-setup.php

    r3220340 r3240994  
    33 * Plugin Name: Magic Export & Import
    44 * Description: The ultimate tool to migrate any content including posts, terms, users, comments, WooCommerce shop orders and ACF Options pages.
    5  * Version: 1.0.1
     5 * Version: 1.0.2
    66 * Requires at least: 6.2
    77 * Requires PHP: 7.4
  • magic-export-import/trunk/includes/plugin-adapters/class-magic-ex-im-adapter-woocommerce.php

    r3220340 r3240994  
    481481
    482482            $feature_label = __( 'High-Performance order storage', 'woocommerce' );
    483             $file_param    = $file_params [ self::CUSTOM_TABLES_FEATURE_KEY ] ?? '';
    484 
    485             if ( empty( $file_param ) ) {
     483
     484            if ( ! isset( $file_params [ self::CUSTOM_TABLES_FEATURE_KEY ] ) ) {
    486485
    487486                $file_content_errors[] = sprintf(
     
    493492            }
    494493
     494            $file_param_feature_enabled = wc_string_to_bool( $file_params [ self::CUSTOM_TABLES_FEATURE_KEY ] );
    495495            $theme_feature_enabled      = wc_string_to_bool( get_option( self::CUSTOM_TABLES_FEATURE_KEY ) );
    496             $file_param_feature_enabled = wc_string_to_bool( $file_param );
    497496
    498497            if ( ! $file_param_feature_enabled && $theme_feature_enabled ) {
  • magic-export-import/trunk/readme.txt

    r3220340 r3240994  
    44Tags: export, import, content migration, csv, custom fields
    55Tested up to: 6.7
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GPL v3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.txt
     
    7777== Changelog ==
    7878
    79 = 1.0.0 =
     79= 1.0.2 =
     80* Fixed WooCommerce HPOS Identification for shop orders import
     81
     82= 1.0.1 =
    8083* Initial release
    8184
    8285== Upgrade Notice ==
    8386
    84 = 1.0.0 =
     87= 1.0.1 =
    8588Initial release
Note: See TracChangeset for help on using the changeset viewer.