Title: Removing Search Bars
Last modified: August 21, 2016

---

# Removing Search Bars

 *  Resolved [blackdogllc](https://wordpress.org/support/users/blackdogllc/)
 * (@blackdogllc)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/removing-search-bars/)
 * [http://www.parkpersonnel.com/services/?page_id=7914](http://www.parkpersonnel.com/services/?page_id=7914)
 * Heyo!!!!! First off, I LOVE this! It works perfectly!
    The only thing I am stumbling
   over is removing the Search bars above the job categories. I have tried using
   this short code (( [jobs show_filters=”0″] )) but that removes the category filters
   as well. I am fairly familiar with code but I am not sure what line to delete.
 * Thanks a bunch guys! You are the best!~
    -Lyssa
 * [https://wordpress.org/plugins/wp-job-manager/](https://wordpress.org/plugins/wp-job-manager/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Evert](https://wordpress.org/support/users/fourleafed/)
 * (@fourleafed)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/removing-search-bars/#post-5086344)
 * You can find the code for the search form in the file /templates/job-filters.
   php If you only want to show the categories you need to overwrite the template(
   see docs on how to do this) and replace the content of job-filters.php with the
   following
 *     ```
       <?php wp_enqueue_script( 'wp-job-manager-ajax-filters' ); ?>
       <form class="job_filters">
       	<?php do_action( 'job_manager_job_filters_start', $atts ); ?>
   
       	<div class="search_jobs">
       		<?php do_action( 'job_manager_job_filters_search_jobs_start', $atts ); ?>
   
       		<?php if ( $categories ) : ?>
       			<?php foreach ( $categories as $category ) : ?>
       				<input type="hidden" name="search_categories[]" value="<?php echo sanitize_title( $category ); ?>" />
       			<?php endforeach; ?>
       		<?php elseif ( $show_categories && ! is_tax( 'job_listing_category' ) && get_terms( 'job_listing_category' ) ) : ?>
       			<div class="search_categories">
       				<label for="search_categories"><?php _e( 'Category', 'wp-job-manager' ); ?></label>
       				<?php wp_dropdown_categories( array( 'taxonomy' => 'job_listing_category', 'hierarchical' => 1, 'show_option_all' => __( 'All Job Categories', 'wp-job-manager' ), 'name' => 'search_categories', 'orderby' => 'name', 'selected' => $selected_category ) ); ?>
       			</div>
       		<?php endif; ?>
   
       		<?php do_action( 'job_manager_job_filters_search_jobs_end', $atts ); ?>
       	</div>
   
       	<?php do_action( 'job_manager_job_filters_end', $atts ); ?>
       </form>
       ```
   
 *  Thread Starter [blackdogllc](https://wordpress.org/support/users/blackdogllc/)
 * (@blackdogllc)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/removing-search-bars/#post-5086406)
 * **YOU SIR ARE THE BOMB!**
 * I was trying to take the search bar out with the assets/css/fronend.css
    I would
   not have thought to search in the job templates!
 * Thanks so much!!!!!
    -Lyssa

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Removing Search Bars’ is closed to new replies.

 * ![](https://ps.w.org/wp-job-manager/assets/icon-256x256.gif?rev=2975257)
 * [WP Job Manager](https://wordpress.org/plugins/wp-job-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-job-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-job-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-job-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-job-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-job-manager/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [blackdogllc](https://wordpress.org/support/users/blackdogllc/)
 * Last activity: [11 years, 11 months ago](https://wordpress.org/support/topic/removing-search-bars/#post-5086406)
 * Status: resolved