From 231e2dc0a53f582726672ace70c9935db9874802 Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Wed, 15 May 2019 16:42:07 -0400 Subject: [PATCH] Send overlay search requests to site-search page, show members of chosen selection --- parts/content-none.php | 3 --- sections/footer.php | 13 +------------ sections/search.php | 14 ++++++++------ 3 files changed, 9 insertions(+), 21 deletions(-) diff --git a/parts/content-none.php b/parts/content-none.php index 192dc32..78d2292 100644 --- a/parts/content-none.php +++ b/parts/content-none.php @@ -14,9 +14,6 @@
- - -
diff --git a/sections/footer.php b/sections/footer.php index ed320a5..7960c9a 100644 --- a/sections/footer.php +++ b/sections/footer.php @@ -142,24 +142,13 @@ $cities = $decode_array['cities']; -
-
- + - - - diff --git a/sections/search.php b/sections/search.php index 82fcf4f..55f02e0 100644 --- a/sections/search.php +++ b/sections/search.php @@ -4,9 +4,11 @@
-

Please enter a query in the search box.

+ +
get_search_query() returned empty.
-

Search Results for ""

+ +
@@ -17,7 +19,7 @@ @@ -28,7 +30,7 @@ @@ -41,7 +43,7 @@ * If you want to overload this in a child theme then include a file * called content-search.php and that will be used instead. */ - get_template_part( 'template-parts/content', 'search' ); + get_template_part( 'parts/content-search' ); endwhile; @@ -49,7 +51,7 @@ else : - get_template_part( 'template-parts/content', 'none' ); + get_template_part( 'parts/content-none' ); endif; ?> -- 2.17.1