Support

Account

Home Forums ACF PRO Save ACF values to user profile Reply To: Save ACF values to user profile

  • I dodn’t even think it could be that simple.
    thanks!

    made a new group of radio button fields and submitted with

     <?php
                                $options = array(
                                    'post_id' => 'user_'.$current_user->ID,
                                    'field_groups' => array(232),
                                    'form' => true,
                                    'return' => add_query_arg( 'updated', 'true', get_permalink() ),
                                    'html_before_fields' => '',
                                    'html_after_fields' => '',
                                    'submit_value' => 'Update'
                                );
    
                                acf_form( $options );
                                ?>

    now my only problem is that I need to make some of the radio buttons to have the same value inside the same group.
    is it possible?