How to use Form Submit Redirect URL option?

I have a combobox where when the user clicks “search”, I want them to be redirected to a results page that contains the Finsweet filters. I want the fitlers to be filtered with a parameter sent from the combobox form submit.

I don’t understand this documentation:

Do I need custom code to append the redirect url?

Said in another way:

  1. User lands on home page and make selection (value) from combobox.
  2. Clicks submit
  3. Should be redirected to /results?key=value

Hey @jkuo! I’ve done this in the past with some JS, but recently found this might be doable natively with Webflow forms, it’s even easier if you only have one field.

You can share a link and I will test the setup and let you know how to set it up natively or with code :wink:

Thanks @Support-Luis! Here’s the link. I was hoping to pass it as a search parameter, but it also work as the degree filter (fs-cmsfilter-field=degree)

For further context:

  1. Besides appending a parameter to, I could also redirect to a unique landing page for each selection. How does that solution compare in difficulty compared to just passing the parameter?
  2. The next version will most likely also automatically filter results by location.

Besides appending a parameter to, I could also redirect to a unique landing page for each selection. How does that solution compare in difficulty compared to just passing the parameter?

The complexity of this would be creating the multiple pages needed and modifying the setup to dynamically create the URL and its query params depending on user selection. Possible but with some extras steps

The next version will most likely also automatically filter results by location.

We can pass several parameters and the list will load with the filters applied or if you go with the option above the setup would stay almost the same

@jkuo, one thing I forgot to ask, what is the destination URL? :sweat_smile:

Here you go! /program-search-results

Thanks @jkuo! Since we only have one field this should be fairly simple.

You can follow these steps:

  1. Set the select element name to your identifier

  2. set the action to your destination page

And that should be it. Let me know if you face any issues!