Thread Starter
dotted
(@dotted)
Solved:
Edit “term-select-field.php” (make sure to override the templates to keep the edits after the updates), use wp_dropdown_categories options, especially the “show_option_none” argument. Either declare a variable that you’ll be submitting in your option (if you’re using a custom form) or just add a space in the “if” part.
Change : $field['required'] ? '' : '-', to $field['required'] ? ' ' : '-',
You need to edit the file “job-submitted.php”.
https://wpjobmanager.com/document/template-overrides/ : Follow the instructions here in order to have the templates on your theme’s folder then edit this file : https://raw.githubusercontent.com/Automattic/WP-Job-Manager/master/templates/job-submitted.php
I don’t know for sure if there is a way to redirect within wp or wpjobmanager but you can still use PHP’s header :
header('Location: https://www.jobsforfelonshub.com/job-submission-confirmed/', true, 307);