Currently the plugin supports migrations from the following plugins:
- WooCommerce Points and Rewards (by WooCommerce)
- MyRewards (by Long Watch Studio)
- WPLoyalty (by flycart)
- Points and Rewards for WooCommerce (by WP Swings)
- YITH WooCommerce Points and Rewards (by YITH)
If you have one of these plugins installed, you will see a new “Migration” page under the Simple Points and Rewards admin menu. Visit this page, select the source plugin, configure your preferred options, and click “Start Migration”.
This will then begin the migration.
The plugin migrates 10 users per process, to prevent timeouts and high resource usage.
If needed, you can use the “spar_migration_batch_size” filter to change this batch size limit like this code snippet:
function my_custom_spar_batch_size( $size ) {
return 50;
}
add_filter( 'spar_migration_batch_size', 'my_custom_spar_batch_size' );