Trigger Workflow 'Before Page Load' when returning from Stripe?

I have a workflow that is running ‘on page load’ on a page that is displayed on return from Stripe. That workflow determines which elements to display on the page based on what action the user has taken at Stripe. The issue I am having is that the page is being displayed with its default elements shown and then is being updated based on the ‘on page load’ workflow, which I don’t want. I don’t want the user to see the page load then update - I want the workflow to completely run before the page loads and for the correct elements to be displayed on page load.

How can I achieve this? There is no ‘before page load’ workflow trigger. And I cannot trigger the workflow from Stripe obviously. Thoughts? Thanks!

you can try with hiding everything by default and set what to show using the workflow

1 Like

Good idea thanks @dorilama will try it tomorrow.