Skip to content

Instantly share code, notes, and snippets.

@tripflex
Last active November 21, 2023 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/d6468c0f64c67cbfc72a4991a28bc438 to your computer and use it in GitHub Desktop.
Save tripflex/d6468c0f64c67cbfc72a4991a28bc438 to your computer and use it in GitHub Desktop.
Hide gray box above Job Listings when using Search and Filtering for WP Job Manager
/* This hides the gray box above job listings output */
.job_filters .search_jobs {
display: none;
}
/* This hides the "Search Completed. Found X Matching Records." and the RSS & Reset Links */
/* !important is required as javascript code unhides this element after results are returned */
.job_filters .showing_jobs {
display: none !important;
}
@tripflex
Copy link
Author

This should really only be necessary when you want filters to live outside the normal default area

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment