The shortcode is designed to be self contained – moving the form would require custom dev. If however you just need a static form,
https://wpjobmanager.com/document/tutorial-creating-custom-job-search-form/
supports keyword, location and category.
Thx! I used this and it looks like this: http://gyazo.com/e5521abf49c02a6ad89b2889c6b9c119
Now if i want to add the type and category for select? How to make it a dropdown? Thanks!
You can use this for categories:
<?php job_manager_dropdown_categories( array( 'taxonomy' => 'job_listing_category', 'hierarchical' => 1, 'show_option_all' => __( 'Any category', 'wp-job-manager' ), 'name' => 'search_categories', 'orderby' => 'name, 'multiple' => false ) ); ?>
Job Types are not currently support via the external form.
I cant get it working! If i put it the code is displayed and nothing appears! Sorry i am a little noob :$
2. When i have all displayed on the widget bar can i make the keyword search and the localitacion dissapear? and have onli the jobs type over the job board?
Thx!!
Maybe you caused an error. Whilst you experiment with the code, you may want to enable debug mode so you can see errors:
http://codex.wordpress.org/WP_DEBUG
I don´t think that it is the problem… is the form of puting it. I put it like this http://gyazo.com/bdacb11d4d3e964b103aecc705f3416b and the web displays http://gyazo.com/820df1336857a822e28e66841c04a57e
How i have to put it on the widget?
thx
O right. If you want a dynamic list of categories in your form you cannot use a text widget… you’d need to build a widget properly through the WordPress API, OR add the form directly to your theme’s sidebar.php template.