@william_oneb
Active 4 years, 3 months ago
-
Henry Wright replied to the topic How to get an ID of a user who was just activated? in the forum How-to & Troubleshooting 9 years, 1 month ago
@william_oneb technically yes. If
bp_core_activate_signup( $key )
is successful then it will return a user ID. Sofunction my_f( $user_id ) {
[Read more]
// You can do something with $user_id here. Note though, the return value of
// bp_core_activate_signup() may be false. In that case,
// the value of $user_id here will be false.
return…