Webflow sync, pageviews & more.
NEW

Is it possible to redirect the client to another page instead of the webhook after submitting a form on my Webflow hosted site integrated with Integromat?

TL;DR
  • Override Webflow's default form behavior using JavaScript to manually send data to the Make (Integromat) webhook via fetch or XMLHttpRequest.
  • After submission, redirect users with window.location.href to your desired page (e.g., "/thank-you").

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.

1. Understand Webflow's Default Form Behavior

  • By default, Webflow shows a success message after form submission and stays on the same page.
  • You cannot set a redirect URL natively in Webflow’s form settings UI.
  • When using Integromat (Make) via form webhooks, Webflow doesn’t support a redirect to a page based on the webhook response.

2. Use a Custom Form and JavaScript Redirect

To redirect after submission while still sending the form data to Integromat:

  • Do not use Webflow’s native form submission.
  • Replace the native submission with JavaScript (using fetch or XMLHttpRequest) to send the form data directly to the Integromat webhook.
  • After receiving a response (or assuming submission), use window.location.href = "/thank-you" to redirect.

3. Example JavaScript Workflow (Inline Reference Only)

  • Inside Page Settings › Before tag, you can add JavaScript.
  • Reference your form with document.querySelector, prevent its default behavior, send the data using fetch to your Make webhook URL.
  • After a 200 OK (success), trigger window.location.href = "/thank-you" (replace with your actual URL).

4. Optional: Hide Native Success/Failure Messages

  • Since you're bypassing Webflow’s form handler, the built-in Success and Error blocks won’t trigger.
  • Better to hide those elements in Designer or update their CSS to display: none.

Summary

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.

Rate this answer

Other Webflow Questions