Page 1 of 1

Redirect After Signup

Posted: 2017-08-14 21:15
by bdurfee
I would like to redirect users to a custom page after they sign up. (New signups have to be approved.) I tried editing the member_activity function:

Code: Select all

switch($activity){
	case 'pending':
		// other functions happen before header and they work fine
		header("Location: ../thanks.php");
		break;
How can I change the page a user lands on after signing up?

Re: Redirect After Signup

Posted: 2017-08-20 08:13
by patsd102
membership_signup.php

Line 70 = redirect("membership_thankyou.php$redirect");

Change = redirect("new url.php$redirect");