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
- field32×6.24%
- gf22×4.29%
- columns19×3.70%
- form18×3.51%
- row18×3.51%
- gf field16×3.12%
- pods16×3.12%
- id14×2.73%
- list11×2.14%
- param10×1.95%
- array8×1.56%
- form id8×1.56%
Retrigger Notifications Gravity Forms
Retrigger Notifications Gravity Forms lets you manually re-send Gravity Forms entry data to external Zapier and Webhook API feeds — directly from the WordPress admin, without resubmitting the form. Whether a webhook failed silently, Zapier missed a trigger, or you simply need to push historical entries to a new integration, this plugin has you covered. 🔄 What It Does When Gravity Forms sends entry data to Zapier or Webhooks, things don’t always go right. Endpoints go down, APIs timeout, and integrations break. Instead of asking users to resubmit, this plugin lets you retrigger the feed for any entry — individually or in bulk. ✅ Use Cases 🔁 Resend failed Zapier triggers — A Zap didn’t fire? Retrigger it from the entry detail page without asking the user to resubmit. 🌐 Resend failed Webhook deliveries — Push entry data again to your Webhook endpoint when the first attempt failed or timed out. 📦 Bulk resend entries to Zapier — Select multiple entries from the Entries list and resend them all to Zapier feeds in one action. 📦 Bulk resend entries to Webhooks — Select multiple entries and push them all to Webhook endpoints at once. 🐛 Debug API integrations — Use the built-in test endpoint and GF logging to troubleshoot why data isn’t reaching your external service. 🔗 Connect a new Zapier integration to old entries — Set up a new Zap and retrigger historical entries so they flow into the new workflow. 🔗 Connect a new Webhook to old entries — Added a new Webhook feed? Push past entries through it without resubmission. 🛠️ Test Zapier/Webhook setup during development — Quickly retrigger entries while building and testing your automation pipeline. 📊 Sync data after downtime — If your external service was down during form submissions, retrigger all affected entries once it’s back online. 🔍 Verify data delivery — Retrigger a single entry and check GF logs to confirm data was sent and received correctly. ⚙️ Settings & Usage This plugin works seamlessly within the existing Gravity Forms interface — no separate settings page required. Single Entry Resend: Go to Forms → Entries in your WordPress admin. Click on any entry to open the Entry Detail page. In the right sidebar, you’ll see “Resend Zapier Feeds” and/or “Resend Webhook Feeds” panels. Check the feeds you want to retrigger. Click the Resend button. Done! Bulk Resend: Go to Forms → Entries and select the entries you want to resend. Choose “Resend Zapier Feeds” or “Resend Webhook Feeds” from the Bulk Actions dropdown. Click Apply. Confirm the action in the popup dialog. All selected entries will be resent to the configured feeds. Debugging: Enable Gravity Forms Logging under Forms → Settings → Logging. Use the built-in test endpoint (/wp-json/gf/v1/test-webhook-api) to verify webhook delivery. All retrigger operations are logged to the GF debug log. 🧩 Works Great With These Plugins Gravity Forms — Required. The form plugin this addon extends. Gravity Forms Zapier Add-On — Required for Zapier retrigger features. Gravity Forms Webhooks Add-On — Required for Webhook retrigger features. GravityView — Display entries on the frontend; use Retrigger to fix API issues behind the scenes. Gravity Perks — Advanced Gravity Forms snippets and utilities that complement this plugin. Gravity Flow — Workflow automation for Gravity Forms; retrigger feeds at any workflow step. WP Webhooks — Extend your webhook capabilities beyond Gravity Forms. Zapier — The automation platform this plugin integrates with for retriggering Zaps. Make (formerly Integromat) — Use with Gravity Forms Webhooks to push data to Make scenarios. Gravity SMTP — Reliable email delivery alongside your retriggered API feeds. 📋 Requirements WordPress 4.0 or higher Licensed Gravity Forms plugin (active) Zapier Add-On enabled (for Zapier features) Webhooks Add-On enabled (for Webhook features)