Tell us what you are trying to do?
- From your tutorials that I have found, I understand that the Search Filters and Search Results are on the same page (or a view).
- In my application, I like to have a shortcode for the Search Results part so that I can insert it onto my Oxygen page.
Is there any documentation that you are following?
Is there a similar example that we can see?
What is the link to your site?
I will greatly appreciate it if you can provide me with some hints or references for that issue.
Without setting up an Oxygen test site I'm not sure how Views are inserted, but you should be able to split your View—the search form and the results—across pages by generating shortcodes to insert the View in the required formats.
If you can edit a page with the classic editor that has the Fields and Views button available to insert the View then you would see the UI has the options for splitting the search and results onto separate pages (screenshot), and that results in shortcodes like this:
// On the search page
[wpv-form-view name="search-projects" target_id="84"]
// On the results page
[wpv-view name="search-projects"]
Note that the search page uses the shortcode wpv-form-view and specifies the ID of the page that will contain the results, while the results page uses the normal wpv-view shortcode.
Can you insert those shortcodes, modified for your View slug and the ID of the target page?