Gravity Forms Submit form as another user
A solution I have found is to manipulate the entry after submission using the following: function submit_as_user_proxy( $form ) { $id = null; $proxy_user_meta = null; $user_role=””; $field_existing_users = null; $field_signed_up_as = null; foreach ( $form[‘fields’] as &$field ) { if ( false !== strpos( $field->cssClass, ‘existing_users’ ) ) { $field_existing_users = &$field; } if … Read more