Support

Account

Home Forums ACF PRO Adding my custom fields to existing front-end post/update form Reply To: Adding my custom fields to existing front-end post/update form

  • @zachnicodemous

    Did you ever find a working solution?

    I want to add an ACF repeating field to the WP Job Manager form used in Listify. Anything you can share would help 😉

    To update, I’m using child theme and am inserting the fields:

    add_filter( 'submit_job_form_fields', 'frontend_add_custom_fields' );
    
    function frontend_add_custom_fields( $custom_fields ) {
    
    $custom_fields = acf_form(array(
    'field_groups' => array(882),
    'form' => false	));
    
    return $custom_fields;
    }