Front-end submission form issues: Stuck after saving ACF fields, disable editing
-
Hi there,
I’m working on a website for a client who uses WP Job Manager. There are several field groups and custom fields generated by ACF too. We have 2 issues with the front-end submission form of WP Job Manager.
1. ACF & WP Job Manager
When I add the custom ACF fields to the submission page, they display and populate properly. When I submit the form, they save properly too. However, although the data is saved, it seems stuck to that page and never goes to the next step. There are no errors thrown in the console or in the debug log. Here is my code:job_manager/job-submit.php
<?php acf_form(array( 'post_id' => $job_id, 'fields' => array( 'price' ), 'form' => false, 'return' => '' )); ?> <?php do_action( 'submit_job_form_job_fields_end' ); ?>
functions.php
add_action( 'init', 'acf_head_add' ); function acf_head_add(){ acf_form_head(); }
2. Editing listings/jobs
I went to Listings -> Settings -> Submission and disabled both “Allow pending edits” and set “Allow Published Edits” to “Users cannot edit”. Those don’t seem to work though, as I am still able to edit listings through the front-end form. Am I missing something?
3. Is it possible to disable the 1-2-3 step process and simply go to a confirmation screen after submitting a new listing?
Thanks!
The page I need help with: [log in to see the link]
- The topic ‘Front-end submission form issues: Stuck after saving ACF fields, disable editing’ is closed to new replies.