Hi @ssurfer,
I am a bit unclear about your first query, could you please elaborate in a bit more details? Actually, what do you mean by an activation email?
If you mean to resend the verification link then we do not have such an option in the plugin but I can provide you a code that you can add in your active theme’s functions.php file that will add a link in the user’s section. It will be “Resend Verification Link”. This should do the trick.
Here’s the code:
add_filter( 'user_row_actions', 'ur_add_new_action_links', 10, 2 );
function ur_add_new_action_links( $actions, $user ) {
$email_status = get_user_meta( $user->ID, 'ur_confirm_email', true );
$url = ur_get_page_permalink( 'myaccount' );
$instance = new UR_Email_Confirmation();
$url = wp_nonce_url( $url . '?ur_resend_id=' . $instance->crypt_the_string( $user->ID, 'e' ) . '&ur_resend_token=true', 'ur_resend_token' );
if ( '0' === $email_status ) {
$actions['resend-email'] = '<a id="resend-email" href="' . esc_url( $url ) . '" target="_bank">' . __( 'Resend Verification Link', 'user-registration' ) . '</a>';
}
return $actions;
}
And regarding your second query, Yes you can verify and unverify users from the backend. But Currently, we don’t have a feature to send the notification email to the users for this action.
Do let me know whether it works for you or not and I will get back to you.
Regards!