@whitehart
This is really strange, it works correctly on thousends of site.
I could give you personal support but yes, this would be premium support. Maybe something in your system or file is creating the problem.
Hi Javier,
You are right. I have tested it on another wordpress install and your plugin works fine there.
I am going to check in my functions.php and other plugins what might be the cause of the issue on my other install.
Regards,
Erik
@erikwillemse
Thanks 🙂
Please make a good review or a little donation in order to help us to be able to continue giving the best support.
FYI: I had code in my functions.php that automatically assigned a new user to a group. When I remove the code below, the import works perfect. Great job!
gr.E.
—- removed code —-
/* automatically add a user to a group NOTE: 999 is “Alle AA-klanten” */
/* based on http://wp-customerarea.com/snippet/automatically-add-a-user-to-a-group/ */
function cuar_add_new_user_to_managed_group( $new_user_id ) {
$destination_group_id = 999; // put the real group ID here
$is_manager = false; // set to true if you want that user to be a manager within that group
$is_member = true; // set to true if you want that user to be a simple member of that group
$group_addon = cuar_addon(‘managed-groups’);
if ( $is_manager ) {
$group_addon->add_manager_to_group( $new_user_id, $destination_group_id );
}
if ( $is_member ) {
$group_addon->add_member_to_group( $new_user_id, $destination_group_id );
}
}
add_action( “user_register”, “cuar_add_new_user_to_managed_group” );
——
This importer use standard WordPress API functions so any hook is called so as you can see, the problem was this one.
Thanks. Do not forget review or donation please 🙂