in includes/ucp/ucp_register.phpemrys wrote:Still hoping for v. 1.03. Really need to be able to redirect my users after registration. Is there any way you could just tell me where in the phpbb code to hard code a redirect upon a successful registration?
Thanks in advance!
Code: Select all
$message = $message . '<br /><br />' . sprintf($user->lang['RETURN_INDEX'], '<a href="' . append_sid("{$phpbb_root_path}index.$phpEx") . '">', '</a>');
Thanks so much, RMcGirr83! So if I wanted to redirect it to my home page (http://um-fvsa.org/), would I just change it to:RMcGirr83 wrote:in includes/ucp/ucp_register.phpemrys wrote:Still hoping for v. 1.03. Really need to be able to redirect my users after registration. Is there any way you could just tell me where in the phpbb code to hard code a redirect upon a successful registration?
Thanks in advance!
is where the "Return to Index" is made after successful registration.Code: Select all
$message = $message . '<br /><br />' . sprintf($user->lang['RETURN_INDEX'], '<a href="' . append_sid("{$phpbb_root_path}index.$phpEx") . '">', '</a>');
Code: Select all
$message = $message . '<br /><br />' . sprintf($user->lang['RETURN_INDEX'], '<a href="' http://um-fvsa.org") . '">', '</a>');