Search executed from one page with results on another?

I have been trying to setup a search form on the landing page of my app as a CTA. I want to prompt the user to search and have it redirect to the listings page. I have attempted this with variables to store the input fields, then binding the variables to the Collection Fetch Inputs, but I seem to be missing something as it doesn’t work.

I have a search form working fine on the results page and even considered as a second though process to update variables on submit, then change the page, populate the initial field values of the form located on the results page and trigger the fetch.

If anyone has a suggestion or tutorial how to go about this it would be greatly appreciated. Thanks in advance for any feedback/assistance!

Hi,
the best will be to pass the search on a query parameter.
On your submit, redirect to the page with a search query param
On your search page, define a query variable, and bind your collection filter to it. Be carefull about the default value if the parameter is not set

This should do the trick :slight_smile:

Thanks, I total missed the queries on page change. I will take a shot at it with this method.