Update:
- Add a Search (not ‘Search Filter’) element to a page & Save
- Create a new template of type ‘Search Results’
- Within that template go to Template Settings > Conditions > set as Search Results
- On that page, create a query loop and style it however you’d like your search results to look
- Add a Pagination element if you don’t want to have an endless scroll of results
- Add a Code element to display a dynamic title (see below - might be easier way, otherwise kudos to 1. Patric)
- Style the rest of the page as you’d like!
Dynamic heading code:
<?php
echo '<h4 class="title">' . esc_html__( 'Results for: "', 'bricks' ) . get_search_query() .'"</h4>';
?>