You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting user role during import from Drupal 7 did not work for me out of the box. As a quick workaround I included the following after the user meta insertion (here):
$user = new WP_User($dUser['uid']);
$user->set_role($wpUserRole);
The text was updated successfully, but these errors were encountered:
Hmm, i'll look into this. Did you get any errors in your error log? I can see I need to check for any errors on that part of the code but was wondering if you found anything in your own error log.
Setting user role during import from Drupal 7 did not work for me out of the box. As a quick workaround I included the following after the user meta insertion (here):
The text was updated successfully, but these errors were encountered: