Skip to content

Which addons work with Feed Error Alerts?

Our plugin hooks into the standard Gravity Forms error reporting mechanism used by feed-based addons. Specifically, we monitor the errors through the gform_{$addon_action_slug}_error action which is triggered when an error is passed to the add_feed_error() method inside Gravity Forms’ core GFFeedAddOn class.

If an addon:

  • Extends the GFFeedAddOn base class, and
  • Uses the add_feed_error() method when a feed fails

…then Feed Error Alerts will automatically detect it, store the error, and include it in your alert digest (or instant notification, if configured). No explicit integration is required per addon, it just needs to use the built-in Gravity Forms error mechanism.

The addon you’re using may not appear in the lists below, but if it ticks those boxes then the errors should be tracked. If you’re unsure just each out to us and we’ll try to confirm for you!

Official Gravity Forms addons that are supported
  • ActiveCampaign Add-On
  • Advanced Post Creation Add-On
  • Agile CRM Add-On
  • AWeber Add-On
  • Breeze Add-On
  • Brevo Add-On
  • Campaign Monitor Add-On
  • Capsule CRM Add-On
  • CleverReach Add-On
  • Constant Contact Add-On
  • EmailOctopus Add-On
  • Emma Add-On
  • GetResponse Add-On
  • Help Scout Add-On
  • HubSpot Add-On
  • iContact Add-On
  • Kit Add-On
  • Mailchimp Add-On
  • MailerLite Add-On
  • Salesforce Add-On
  • Slack Add-On
  • Trello Add-On
  • Twilio Add-On
  • User Registration Add-On
  • Webhooks Add-On
  • Zapier Add-On
  • Zoho CRM Add-On

* Ensure you’re on the latest versions

Official Gravity Forms addons that don’t currently trigger feed errors

The following official addons do extend GFFeedAddOn, but currently don’t call add_feed_error() when a feed fails. As a result, errors from these addons likely won’t be caught by default.

As we understand Gravity Forms will be releasing updates to these addons including the standard error reporting method, at which point they’ll be supported automatically – no updates needed on our end!

  • Gravity Flow (2.9.14)
  • Mollie Add-On (1.7.0)

* versions are what we have checked up to

Gravity Forms Payment addons are currently not supported

Gravity Forms payment addons extend the GFPaymentAddon class, which is an extension of the GFFeedAddon class but usually have their own hooks for errors such as failed payments. Currently, Feed Error Alerts isn’t integrated with payment addons but will be in the near future.

  • 2Checkout Add-On
  • PayPal Checkout Add-On
  • Square Add-On
  • Stripe Add-On

Custom addons or alternative error tracking

If you’re a developer using other 3rd party addons, your own custom Gravity Forms addon or a different method to track errors, you can still use Feed Error Alerts to log and notify on those errors!

You can programmatically store errors into our dashboard with a simple function call. See our support article here:

Integrating custom errors with Feed Error Alerts

This allows full integration even when your plugin doesn’t use add_feed_error.

Filtering & ignoring specific addons

Want to ignore a specific addon’s feeds from being monitored? No problem.

Our plugin includes:

  • A setting to exclude specific addons from monitoring
  • A filter hook developers can use to programmatically suppress alerts for specific addons or feed types

See this article for full details:

How to exclude an addon from alerts monitoring