Quote:
Originally Posted by imk
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;
PHP 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:
PHP Code:
$vbulletin->url = 'url to where you want to redirect your users after the registration';
standard_redirect();
Things to note: Replace the text below:
Code:
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.