Jump to content

Recommended Posts

Posted

Reference: PW 3.0.111 and uikit3 based site using the Regular-Master profile.

I'm trying to automatically redirect a logged-in user to a custom profile page using $session->redirect() and need to add $user->name to the redirect path.

All my attempts appear to have failed:

$session->redirect('/user-profile/')->name;

$session->redirect('/user-profile/')->$user->name;

$session->redirect('/user-profile/' . get($user->name . '/'));

$session->redirect('/user-profile/' & get($user->name));

Can anyone point out where I am going wrong?

Posted

@louisstephens @jmartsch ,

Thank you both for your speedy solutions. Much appreciated.

2 hours ago, louisstephens said:

Thanks jmartsch. I tried that earlier but forgot to switch the single ' for the " which is why it didnt work. 

I think I tried that as well making the same mistake.  ?

Thanks again to you both.

  • Like 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...