Forum

Thread tagged as: Question, Members

Member registration redirect

Hi, When a new member registers he is presented with a successful message on the same page. Is it possible to redirect the member to a new (success) page after a successful registration?

Thanks.

Shawn North

Shawn North 0 points

  • 5 years ago
Drew McLellan

Drew McLellan 2638 points
Perch Support

Yes, you can detect if the user is logged in and then redirect.

if (perch_member_logged_in()) {
    PerchSystem::redirect('/success/pages');
}

I'm not logging them in on a successful registration so I don't think this would work. I just want to redirect to a separate page after registration instead of presenting them with the success message on the same page.

Drew McLellan

Drew McLellan 2638 points
Perch Support

On your form tag, add

next="/success/page"

Awesome thanks!