Front-End Form Submission
-
Hello Guido, I am currently using VSEL with ACF and have a vsel front-end submission form for users events. All the VSEL fields works fine however the ACF front end fields are no longer saving data to the backend of site after the latest VSEL update.
// save acf fields include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( is_plugin_active( 'acf-theme-code/acf_theme_code.php' ) ) { // save acf text fields update_field('field_5bc4ac71251c4', $acf_text_field_1, $post_id); update_field('field_5bc4acae251c5', $acf_text_field_2, $post_id); update_field('field_5bc4ad24251c7', $acf_text_field_3, $post_id); update_field('field_5bc4ad75251c8', $acf_text_field_4, $post_id); // save acf email field update_field('field_5bc4ace2251c6', $acf_email_field_1, $post_id); // save acf radio with two values update_field('field_5bc49a0ca8b30', $acf_radiobox_1, $post_id); update_field('field_5bc4a785ae039', $acf_radiobox_2, $post_id); }
Look forward to hearing your thoughts
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Front-End Form Submission’ is closed to new replies.