MyBB Community Forums

Full Version: Redirect Register Link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Greetings..

I want to know how to bypass / redirect / disable register link..

I have a small bridge between my website registration and forum registration..

Therefore, when a user click on register link in forum, i would like to redirect it to the registration form of the main website..

Or if it not possible, i would like to disable the registration..

Please advice..

Thank you
ACP > Themes & Templates > Templates > **Your Theme** > Header Templates > header_welcomeblock_guest

<a href="{$mybb->settings['bburl']}/member.php?action=register">{$lang->welcome_register}</a>

That's the code you want to look for.

The
{$mybb->settings['bburl']}/member.php?action=register
is the part you want to change to your website register page.
I think you mis-understood Derek. He meant to redirect users to to another registration page of his website after registration.

Open ./member.php file and find; (around line # 300)
redirect("index.php", $lang->redirect_registered);
and change index.php to what ever URL of your website sign-up page is.

If you've enabled "Email activation" in your forum, then you may use this plugin: http://yaldaram.com/showthread.php?tid=218
Quote:Therefore, when a user click on register link in forum, i would like to redirect it to the registration form of the main website..

He wants them to register on his website, Yaldaram.
Thank you both for your reply..
Smile

Actually Derek M. is right..
What I want is to redirect it to my main website for registration, not in the forum..
Smile

and Derek, it works..
Smile

Thank you