Yes, you can redirect users to another page after a form submission on your Webflow-hosted site, even when using Integromat (Make) for backend processing. This requires bypassing the default Webflow form submission behavior and using a different setup.
To redirect after submission while still sending the form data to Integromat:
fetch
or XMLHttpRequest
) to send the form data directly to the Integromat webhook.window.location.href = "/thank-you"
to redirect.tag, you can add JavaScript.
document.querySelector
, prevent its default behavior, send the data using fetch
to your Make webhook URL.window.location.href = "/thank-you"
(replace with your actual URL).display: none
.To redirect users after submitting a form connected to Integromat, you need to override Webflow's default submission via JavaScript, send the form data manually to the Integromat webhook, and then perform a redirect using window.location.href
. This provides both the integration with Make and the user redirection.