using action bp_core_signup_after_activate
-
I’ve been trying to hook into this action, but I can’t seem to. I’ve been digging into the bp code using phpxref to try and follow any possible paths, but I think I’m missing something obvious.
My assumption is that this action should file when a new user clicks the activation link from the activation email.
I tired the following get a simple print_r.
add_action( 'bp_core_signup_after_activate', 'bp_autologin_on_activation', 1 ); function bp_autologin_on_activation( $signup_ids ) { print_r($signup_ids); die('bp_autologin_on_activation'); }
class-bp-signup.php line 696
do_action( ‘bp_core_signup_after_activate’, $signup_ids, $result );
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘using action bp_core_signup_after_activate’ is closed to new replies.