Hi @kayapati
You could customize Post Job form via theme templates, there is a doc about that
https://docs.jobboardwp.com/article/1570-templates-structure
There is $sections variable where all form fields and their data are stored.
Let me know if you have other questions,
Thanks!
Hi @kayapati
I mean job-submission.php template file for the Post Job form.
Best Regards
Thank you, I will look at this.
How easy it is to add a start date to the job board?
Also how do i change the black Find Jobs button on the search page to a blue button?
Hi @madridpand
You could edit the job-submission template https://www.screencast.com/t/ePn727Sz4G
Also there are hooks in submission listener:
do_action( 'jb-job-submission-validation', $posting_form, $user_id ); – for validation
$job_data = apply_filters( 'jb_job_submitted_data', $job_data, $posting_form ); – for extending the job data
Best Regards
Hi @madridpand
You could edit the job-submission template https://www.screencast.com/t/ePn727Sz4G
Also there are hooks in submission listener:
do_action( 'jb-job-submission-validation', $posting_form, $user_id ); – for validation
$job_data = apply_filters( 'jb_job_submitted_data', $job_data, $posting_form ); – for extending the job data
Best Regards
Hi @madridpand
You could edit the job-submission template https://www.screencast.com/t/ePn727Sz4G
Also there are hooks in submission listener:
do_action( ‘jb-job-submission-validation’, $posting_form, $user_id ); – for validation
$job_data = apply_filters( ‘jb_job_submitted_data’, $job_data, $posting_form ); – for extending the job data
Best Regards
Hi @madridpand
You could edit the job-submission template https://www.screencast.com/t/ePn727Sz4G
Also there are hooks in submission listener:
do_action( 'jb-job-submission-validation', $posting_form, $user_id ); – for validation
$job_data = apply_filters( 'jb_job_submitted_data', $job_data, $posting_form ); – for extending the job data
Best Regards
Hi, we have followed this fully but the job post won’t save when submitting on the front end (the custom fields show up fine in the frontend form after editing job_submission.php). Can you please explain in more detail what you mean by this and give examples?:
Also there are hooks in submission listener:
do_action( 'jb-job-submission-validation', $posting_form, $user_id ); – for validation
$job_data = apply_filters( 'jb_job_submitted_data', $job_data, $posting_form ); – for extending the job data