How to create a search results template/page?

Update:

  1. Add a Search (not ‘Search Filter’) element to a page & Save
  2. Create a new template of type ‘Search Results’
  3. Within that template go to Template Settings > Conditions > set as Search Results
  4. On that page, create a query loop and style it however you’d like your search results to look
  5. Add a Pagination element if you don’t want to have an endless scroll of results
  6. Add a Code element to display a dynamic title (see below - might be easier way, otherwise kudos to 1. Patric)
  7. 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>';
?>