Convert LearnDash & LifterLMS #
To convert LearnDash and LifterLMS data, navigate to the Convert menu within Transfer.
Next, select the data you imported in the previous step from the drop-down menu.
Then, select the LMS you wish to convert the data into and click Continue.

Next, select any user roles you wish to change to Subscriber. Then, click Continue.

Review your conversion settings and click Start Conversion.

When the conversion process is done, you will see a pop-up window showing the conversion has been completed.
Navigate to your LearnDash or LifterLMS within your WordPress admin to check your courses and content have been imported and converted correctly.
Disable the Automatic Backup Function #
Disable Automatic Backup During Import/Conversion
This code snippet prevents the automatic backup of your site’s LMS data during the import/conversion processes. This is intended to optimize the execution of the conversion by avoiding unnecessary time consumption on backup operations when not required.
Instructions:
- Insert this code in the functions.php file of your active WordPress theme.
- By implementing this code, the execution time for import and conversion can be optimized.
// Prevent automatic backup before conversion
remove_action( 'ea_transfer_init_learndash_import', 'ea_transfer_auto_backup_before_convert' );
remove_action( 'ea_transfer_init_lifter_import', 'ea_transfer_auto_backup_before_convert' );
remove_action( 'ea_transfer_init_lifter_to_learndash_convert', 'ea_transfer_auto_backup_before_convert' );
remove_action( 'ea_transfer_init_learndash_to_lifter_convert', 'ea_transfer_auto_backup_before_convert' );