Edit Form in WordPress admin * 2. Click "๐Ÿ“‹ Export Layout" button in toolbar * 3. Script copies formatted table to clipboard * 4. Opens new Google Docs tab automatically * 5. Paste (Ctrl+V) into Google Doc * * NOTES * - Detects form field widths (quarter, half, full, etc.) * - Resolves GPPA field mappings to human-readable labels * - Shows conditional logic rules with field references * - Exports hidden/admin-only field indicators * - Table format optimized for Google Docs */ // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ // AJAX: Return all fields (including sub-fields) for a given form // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ add_action( 'wp_ajax_get_gppa_form_fields', function () { // Security: verify nonce check_ajax_referer( 'gf_export_nonce', 'nonce' ); if ( ! current_user_can( 'gravityforms_edit_forms' ) ) { wp_send_json_error( 'Permission denied', 403 ); } $form_id = isset( $_POST['form_id'] ) ? absint( $_POST['form_id'] ) : 0; if ( ! $form_id ) { wp_send_json_error( 'Missing form ID', 400 ); } $form = GFAPI::get_form( $form_id ); if ( ! $form || empty( $form['fields'] ) ) { wp_send_json_error( 'Form not found', 404 ); } $field_map = []; foreach ( $form['fields'] as $field ) { // Top-level field if ( isset( $field->id, $field->label ) ) { $field_map[ (string) $field->id ] = $field->label; } // Sub-fields (address parts, name parts, etc.) if ( isset( $field->inputs ) && is_array( $field->inputs ) ) { foreach ( $field->inputs as $input ) { if ( ! empty( $input['id'] ) ) { $sub_label = ! empty( $input['label'] ) ? ( $field->label . ' โ€” ' . $input['label'] ) : $field->label; $field_map[ (string) $input['id'] ] = $sub_label; } } } } wp_send_json_success( [ 'title' => rgar( $form, 'title' ), 'fields' => $field_map, ] ); } ); // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ // Inject the Export Layout button + script into the GF editor // โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ add_action( 'gform_editor_js', function () { $nonce = wp_create_nonce( 'gf_export_nonce' ); ?>