Hello,
Is there a way in the workflow to have a true false condition that says "if you come from page X"then you enter the path A, else it’s path B?
Thanks
Hey @MrUnfreeze ![]()
A couple of ways that come to mind:
save the page the user is coming from before he navigates away in an originPage variable and use the value of that variable to create the condition on the page workflow of the page they navigate to.
add a query param when the user navigates from one page to another (/target-page?from=pageX) and use that query param to create the condition in the workflow.
Does that make sense?