Trigger problem

I have a problem with the Trigger options. In Sign up I have set everything as it should be and at the end I have the Go to page company option. And it’s set to take me to the settings page. That’s fine. But since I have an option next to company and candidate, I used a Trigger to separate for me separately, when I click on company and when I click on candidate and take me to different pages. However, not a single possibility will be fulfilled now. It’s like he doesn’t see the pages I send them to.

Here I clicked on I’m company


    In the workflow, I set it to switch to the settings page

   
 And it took me to the settings page

           **I'm taking the trigger now.**

   
I have created two positions for the company and the candidate on the left and now I have set the trigger for the candidate.


  
  Now with Button Sign up, I switch from 2-5 to Company position


 I have saved 2 triggers, one for the company and the other for the candidate.



Now the company trigger is complete and should, when someone clicks on company, take them to the settings page

 
    And then there is the trigger for the company.
 



  This is the Account page for the candidate.

  But it won't transfer either when I click on company or when I click on candidate. Why?

You probably have a race condition here because it appears that you set the user type, and only a few step (inside the custom event) you want to use that user type inside a condition.

I believe the condition is never met because at the time the workflow step condition is evaluated, your user has no type yet.

You should redirect based on a data available in the frontend, like which button has been clicked.

You should run the workflow with the debugger on and step by step check the conditions and parameters.
If it’s not redirecting to none of the pages, then a parameter is missing and both triggers are not running.

Button sign up is pressed series is issue. You have the step to sign user up and then conditionally trigger candidate or company custom event based on CURRENT USER….dont use that condition, use a condition that references the value on the page that determines if they are signing up as a company or candidate, which I’d guess is a custom state value.