Changeset 3240994
- Timestamp:
- 02/15/2025 01:34:57 PM (12 months ago)
- Location:
- magic-export-import/trunk
- Files:
-
- 3 edited
-
class-magic-ex-im-setup.php (modified) (1 diff)
-
includes/plugin-adapters/class-magic-ex-im-adapter-woocommerce.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
magic-export-import/trunk/class-magic-ex-im-setup.php
r3220340 r3240994 3 3 * Plugin Name: Magic Export & Import 4 4 * Description: The ultimate tool to migrate any content including posts, terms, users, comments, WooCommerce shop orders and ACF Options pages. 5 * Version: 1.0. 15 * Version: 1.0.2 6 6 * Requires at least: 6.2 7 7 * Requires PHP: 7.4 -
magic-export-import/trunk/includes/plugin-adapters/class-magic-ex-im-adapter-woocommerce.php
r3220340 r3240994 481 481 482 482 $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 ] ) ) { 486 485 487 486 $file_content_errors[] = sprintf( … … 493 492 } 494 493 494 $file_param_feature_enabled = wc_string_to_bool( $file_params [ self::CUSTOM_TABLES_FEATURE_KEY ] ); 495 495 $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 );497 496 498 497 if ( ! $file_param_feature_enabled && $theme_feature_enabled ) { -
magic-export-import/trunk/readme.txt
r3220340 r3240994 4 4 Tags: export, import, content migration, csv, custom fields 5 5 Tested up to: 6.7 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 License: GPL v3 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.txt … … 77 77 == Changelog == 78 78 79 = 1.0.0 = 79 = 1.0.2 = 80 * Fixed WooCommerce HPOS Identification for shop orders import 81 82 = 1.0.1 = 80 83 * Initial release 81 84 82 85 == Upgrade Notice == 83 86 84 = 1.0. 0=87 = 1.0.1 = 85 88 Initial release
Note: See TracChangeset
for help on using the changeset viewer.