WordPress; Vantage theme & ACF plugin?

Solution:

I have succeed on implementing ACF with vantage themes.

I add ACF form at vantage listing form and combine the vantage form with ACF form. with one button.

The data has been saved to database and can be called to displayed in listing area. Only add image button is not working from front-end but in back-end the button is working.

  1. Adding <?php acf_form_head(); ?> to wrapper.php
  2. Do this tutorial front end form help
  3. Eliminate default vantage submit button in form-listing.php
  4. Add this code in ACF api.php in function acf_form_head()
     // allow for custom save
    
    $post_id = apply_filters('acf_form_pre_save_post','va_after_create_listing_form', $post_id);
    

That’s it, hope it work in your site.