I’ve tried that one but it won’t trigger, I’ve put this in my main plugin PHP file:
add_action('register_post','mm_handle_registration',10,3);
function mm_handle_registration($login,$email,$errors)
{
print_r($_POST);
echo "Test:<br>$login,$email,$errors<br>";
die;
}
But I never see that code…