Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove search box from main nav when on the search page. #94

Merged
merged 2 commits into from
Dec 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The Investigative News Network WordPress Theme
The Institute for Nonprofit News WordPress Theme
===

This is the WordPress child theme used for https://inn.org.
Expand Down
4 changes: 3 additions & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,9 @@ function inn_print_scripts() {
* Add search box to main nav
*/
function inn_add_search_box() {
get_template_part( 'partials/inn-nav-search-form' );
if ( ! is_search() ) {
get_template_part( 'partials/inn-nav-search-form' );
}
}
add_action( 'largo_after_main_nav_shelf', 'inn_add_search_box' );

Expand Down