• Resolved d555555

    (@d555555)


    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!

    • This topic was modified 5 years, 6 months ago by d555555.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Richard Archambault

    (@richardmtl)

    Hi,

    Unfortunately, I can’t help you with the integration with ACF.

    2. Editing listings/jobs

    Were you logged in as the site administrator when you tried this?

    3. Is it possible to disable the 1-2-3 step process

    I’m not sure what process you’re referring to. Do you mean, skipping the preview? If so, see here:

    https://wpjobmanager.com/document/remove-the-preview-step/

    Plugin Contributor Richard Archambault

    (@richardmtl)

    I’m marking this thread as Resolved as it’s been more than a month since the last reply. If you still need help, please do reply again and mark the thread as Unresolved!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Front-end submission form issues: Stuck after saving ACF fields, disable editing’ is closed to new replies.