Re: Simple registration
0. done
1. so far bb_update_usermeta -> bb_update_meta-> and now in lines 38 and 39 of register.php on the root we add a line below 38: bb_update_usermeta( $user_id, $key, $$key ); /*this is where the user gets registered */
As follows: bb_update_user_password( $user_id, “default” ); /* I am assigning here the new password by default which is “default”
This works! So now I just need to get the string from the custom field and assign it here! Can anyone more experienced than me help me?