What I want to do: When a user updatesredirect users to their profile, I want them to be redirected (/user) after they save changes to their account pageprofile settings (/user/[uid]/edit). If
If their account isaccounts are updated in another manner (by rules, etc.), I do not want them to be redirected.
I started by makingmade a rule like this:
- Event-> After updating an existing account
- Actions-> Page redirect to user/[account:uid]
This redirects properly; however, on my site sometimes user accounts get updated when a user adds content. Adding content then also causes this rule to get called, which I don't want. I only want the user to be redirected if they updated their account details at user/[account:uid]/edit.
I tried adding:
- Condition: Path has URL alias: user/[account:uid]/edit
But this doesn't allowHowever, then the redirect ceases to function.