Log in

View Full Version : Redirect User upon Registration!


imk
05-06-2010, 01:45 PM
how can i send new registrations to a specific url?

borbole
05-06-2010, 02:01 PM
how can i send new registrations to a specific url?

If you have set the method of registration to instant redirect, go to the plugin manager at the acp of your forum and then at create a new plugin.

For hookname choose: register_addmember_complete.

Then at the php code section add this code;

$vbulletin->url = 'url to where you want to redirect your users after the registration';
standard_redirect();



If instead you have set the method of registration to Email activation, for hook name at the plugin use register_activate_process and at the php code section use the same code as above:

$vbulletin->url = 'url to where you want to redirect your users after the registration';
standard_redirect();





Things to note: Replace the text below:

url to where you want to redirect your users after the registration

with the actual url where you want to redirect your users after the registration. Also don''t forget to activate the plugin.

Hope it helps.

imk
05-06-2010, 02:04 PM
will try this now thanks alot dude!

borbole
05-06-2010, 02:32 PM
will try this now thanks alot dude!

No problem.

borbole
05-08-2010, 11:35 PM
P.s. You can also use my mod here.

https://vborg.vbsupport.ru/showthread.php?t=235509

remove the version at the depency and it should work at a vb 3x as well.