Does anybody know how I can automatically redirect someone into their control panel upon registration completetion?
Alright, did it myself.
Find:
PHP Code:
eval(standard_error(fetch_error('registration_complete', $username, $vbulletin->session->vars['sessionurl'], $vbulletin->options['bburl'] . '/' . $vbulletin->options['forumhome'] . '.php'), '', false));
Comment it out //
Insert below
PHP Code:
// Send the User to their picture profile page
$vbulletin->url = "profile.php?do=editprofilepic". $vbulletin->session->vars['sessionurl'];
eval(print_standard_redirect('registration_complete'));