Live Summary for Gravity Forms
This simple and free plugin helps you to easily add a live summary to any gravity forms. No coding required. Simply check the fields you want to see and save your form. TRY DEMO HERE GET PRO VERSION HERE How to set it up Install the plugin The plugin has its own settings page since v1.1. Find it under Form > Settings > Live Summary Switch on the “Turn on summary” checkbox. Decide which fields to show in the summary by checking the checkbox in the field settings of each field that you want to show. Summary will now work Optional: Show a total at the bottom. This will automatically work if you add any product fields to the form. To turn this total off, simply go back to the settings page and toggle the switch that says “show total in summary” screenshot section Conditional logic supported Currently the following field types are supported in the free version: Single Line Text Paragraph Text Drop Down Number Checkboxes Radio Buttons Name Date time Phone Address Website Username Email Multi Select Product Total Shipping More fields are supported in the PRO version PRO version Currently available PRO features are: NEW: Added new setting for choice fields (radio, select, checkboxes) which allows you to display the choice label instead of its value NEW: Added support for hidden fields NEW: Added support for Section fields. NEW: Added support for EU VAT field NEW: Added support for coupon fields NEW: Support for Gravity Forms Ecommerce fields (subtotal, tax, discount) NEW: Added support for Jetsloth Image Choices Change the field label shown in the summary + mergetag support in label Setting to change the “nothing selected” text Add a custom css class to the field line in the summary Adds a new fieldtype to Gravity that will output a live summary anywhere in your form! Adds support for merge tags inside HTML fields. (currently only working in multi-page forms) Make the summary sticky on scroll (very helpful for longer forms) Easily change default labels (Title and Total) Change the side of the summary (right or left) Brand Styler to configure things like fonts, border settings, background settings and padding settings Show summary on the confirmation page (experimental setting) More things are possible with this plugin such as moving the button just under the summary or adding a logo above it for example. This and more can currently only be done with custom code snippets. I provide these snippets free for Pro customers. GET PRO VERSION HERE Other plugins from the same developer EU Vat for gravity forms: Easily calculate and validate European VAT (taxes) in gravity forms GET IT HERE HERE Coinbase Commerce for gravity forms: Accept cryptocurrency payments with Coinbase Commerce and Gravity Forms GET IT HERE HERE Compatible with Gravity forms 2.5 and up. Feature requests This is a relatively new plugin and I am looking into how I can make the plugin better. Do you have an idea for this plugin? Please let me know in the support tab or mail me directly. Found any bugs? Please let me know before leaving a bad review. Chances are high that I will be able to fix it! Hire Me Are you looking for a professional to do a gravity forms related job? I have several years of experience with gravity forms and much longer with coding. Find out more on my website
Top keywords
- summary13×2.29%
- forms11×1.94%
- fields10×1.76%
- gravity10×1.76%
- gravity forms9×1.59%
- support9×1.59%
- here7×1.23%
- settings7×1.23%
- added6×1.06%
- field6×1.06%
- pro6×1.06%
- added support5×0.88%
Pods Gravity Forms Add-On
Requires: Pods 3.0+, Gravity Forms 1.9+ Demo: Want to try Pods GF out? Check out the Gravity Forms Live Demo and install the Pods and Pods Gravity Forms plugins once you’re there Bugs/Ideas: Please report bugs or request features on GitHub Special thanks to Rocketgenius for their sponsorship support and to Naomi C. Bush for her help in the initial add-on UI work. WP-CLI Command for Syncing Entries This add-on provides the ability to sync entries from a Form Submission and Entry Edit screen. To bulk sync all entries even prior to setting up a Pods Gravity Form Feed, you can run a WP-CLI command. Example 1: Sync all entries for Form 123 first active Pod feed wp pods-gf sync --form=123 Example 2: Sync all entries for Form 123 using a specific feed (even if it is inactive) wp pods-gf sync --form=123 --feed=2 Mapping GF List Fields to a Pods Relationship field You can map a GF List field to a Relationship field related to another Pod. Using the below examples you can customize how the automatic mapping works. By default, the list columns will map to the pod fields with the same labels. Example 1: Customize what columns map to which Related Pod fields for Form ID 1, Field ID 2 Customizing a list field row can be done by using the pods_gf_field_columns_mapping filter, which has Form ID and Field ID variations (pods_gf_field_columns_mapping_{form_id} and pods_gf_field_columns_mapping_{form_id}_{field_id}). add_filter( 'pods_gf_field_columns_mapping_1_2', 'my_columns_mapping', 10, 4 ); /** * Filter list columns mapping for related pod fields. * * @param array $columns List field columns. * @param array $form GF form. * @param GF_Field $gf_field GF field data. * @param Pods $pod Pods object. * * @return array */ function my_columns_mapping( $columns, $form, $gf_field, $related_obj ) { $columns[0] = 'first_field'; $columns[1] = 'second_field'; $columns[2] = 'third_field'; return $columns; } Example 2: Customize a List row for Form ID 1, Field ID 2 Customizing a list field row can be done by using the pods_gf_field_column_row filter, which has Form ID and Field ID variations (pods_gf_field_column_row_{form_id} and pods_gf_field_column_row_{form_id}_{field_id}). add_filter( 'pods_gf_field_column_row_1_2', 'my_column_row_override', 10, 6 ); /** * Filter list field row for relationship field saving purposes. * * @param array $row List field row. * @param array $columns List field columns. * @param array $form GF form. * @param GF_Field $gf_field GF field data. * @param array $options Pods GF options. * @param Pods|false $related_obj Related Pod object. * * @return array */ function my_column_row_override( $row, $columns, $form, $gf_field, $options, $related_obj ) { // Update certain row fields based on the value of specific column. if ( ! empty( $row['user_relationship_field'] ) ) { $user = get_userdata( (int) $row['user'] ); // Set the post_title to match the User display name. if ( $user && ! is_wp_error( $user ) ) { $row['post_title'] = $user->display_name; } } return $row; }
Top keywords