fix(search): remove duplicate search form on no-results page#2712
Open
faisalahammad wants to merge 1 commit into
Open
fix(search): remove duplicate search form on no-results page#2712faisalahammad wants to merge 1 commit into
faisalahammad wants to merge 1 commit into
Conversation
The search template (search.php) already renders a search form in the page header. When no results are found, content-none.php was rendering a second identical form via the is_search() branch. Remove the duplicate while keeping the search form in the else branch (used by 404 pages and empty archives). Fixes Automattic#1796
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
When a search returns no results, the page renders two identical search forms — one in the page header (
search.php:19) and another in the content area (content-none.php:39). Remove the duplicate from the content area since the header form is already visible.Fixes #1796
Changes
newspack-theme/template-parts/content/content-none.phpBefore:
After:
Why: The search results page already has a search form in its header. The
elsebranch (used by 404 pages and empty archives) retains its search form since those pages don't have one elsewhere.Testing
Test 1: Search with no results
?s=xyznonexistent123)Test 2: 404 page
Test 3: Empty archive
Screenshot