ACF custom fields in proposal form
I am wanting to add fields to the proposal form. I am able to display the fields in the form in the frontend by using this code:
Code:
<?php acf_form_head(); ?>
<?php acf_form(array('post_id' => $proposal->id, 'form' => false, 'field_groups' => array(131), 'return' => '' )); ?>
But the problem is, I still cant actually save the value upon form submission. Anyone got an idea about this? Its driving me crazy