Yes, you can redirect users to another page after a form submission on your Webflow site, even when using Integromat (Make) via a webhook. The trick is to avoid displaying the Webflow “success” state and instead use JavaScript to handle both the submission and the redirect.
Here's how to do it:
<form>
Handler With JavaScript in Webflowfetch()
to Integromat’s webhook, and then programmatically redirect.tag or in an Embed element on the page.
Example logic (inline, not code block):
fetch()
to send a POST
request to the webhook.fetch().then()
, use window.location.href = '/thank-you'
or any URL you want./thank-you
).To redirect users after submitting a form connected to Integromat, handle the form submission with JavaScript, send the data to the Integromat webhook, and then manually redirect the user using window.location.href
. Webflow doesn’t support redirecting natively when using external webhooks, so custom scripting is necessary.