Plugin info

Total downloads: 2,228
Active installs: 30
Total reviews: 1
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 6/2/2025 (212 days ago)
Added to WordPress: 3/24/2023 (2 years old)
Minimum WordPress version: 5.9
Tested up to WordPress version: 6.8.3
Minimum PHP version: 7.4

Maintenance & Compatibility

Maintenance score

Stale • Last updated 212 days ago • 1 reviews

40/100

Is Add-On for Discord and Gravity Forms abandoned?

Likely maintained (last update 212 days ago).

Compatibility

Requires WordPress: 5.9
Tested up to: 6.8.3
Requires PHP: 7.4

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Webhook for Discord
Rating 5.0/5 (3 reviews)Active installs 500
Init Pulse For Discord – Webhooks, Roles, Instant
Rating 0.0/5 (0 reviews)Active installs 0
ExpressTechSoftwares Discord Add-on for Paid Memberships Pro
Rating 4.3/5 (20 reviews)Active installs 800
WP Discord Post
Rating 4.1/5 (15 reviews)Active installs 800
WP Discord Post Plus – Supports Unlimited Channels
Rating 4.0/5 (11 reviews)Active installs 800
WP Discord Invite
Rating 4.6/5 (7 reviews)Active installs 500

Description

The “Add-On for Discord and Gravity Forms” WordPress plugin is a fantastic tool that bridges the gap between your website’s forms and your Discord community! It seamlessly integrates Gravity Forms, a popular form builder plugin, with Discord, a leading communication platform.

With this add-on, you can:

  • Automatically send form submissions to a designated Discord channel
  • Map form fields to Discord message embeds, making it easy to display user-submitted data
  • Trigger custom notifications and messages based on form responses
  • Enhance user engagement and community interaction

This plugin is perfect for:

  • Community managers who want to centralize form submissions and discussions
  • Developers who need to streamline form data and notifications
  • Site owners who want to foster a more interactive and responsive community
  • Those that have unreliable email systems

By connecting Gravity Forms and Discord, this add-on simplifies communication, enhances user experience, and boosts community engagement! It’s a win-win for anyone looking to supercharge their online interactions!

Demo

Installation

  1. Install the plugin from your website’s plugin directory, or upload the plugin to your plugins folder.
  2. Activate it.
  3. Go to Gravity Forms > Settings > Discord.

Frequently Asked Questions

Where can I request features and get further support?

We recommend using our website support forum as the primary method for requesting features and getting help. You can also reach out via our Discord support server or the WordPress.org support forum, but please note that WordPress.org doesn’t always notify us of new posts, so it’s not ideal for time-sensitive issues.

How can I mention a user or tag a channel in my messages?

From the form’s Discord feed, you can mention a user with {{@user_id}} or a role with {{@&role_id}}, and tag a channel with {{#channel_id}}. If you’re unfamiliar with where to find these IDs, check out this article on Discord.

How can I further customize the message sent to Discord?

With version 1.0.6, you can now use the following hook:

<?php
add_filter( 'gf_discord_embeds', 'my_gf_discord_embeds', 10, 3 );
function my_gf_discord_embeds( $embeds, $form, $entry ) {
    // Filter the message
    $embeds[0][ 'description' ] = str_replace( '{{my_own_merge_tag}}', 'New Value', $embeds[0][ 'description' ] );

    // Add a new field
    $user_id = $entry[ 'created_by' ];
    $user = get_user_by( 'ID', $user_id );
    $display_name = $user->display_name;

    $embeds[0][ 'fields' ][] = [
        'name'  => 'Completed By:',
        'value' => $display_name
    ];

    // Always return embeds
    return $embeds;
} // End my_gf_discord_embeds()
?>

Review feed

No reviews available

Screenshots

  1. Plugin settings page

    Plugin settings page

  2. Form feed settings page

    Form feed settings page

  3. Entry page

    Entry page

  4. Discord channel post

    Discord channel post

Changelog

1.3.0

  • Update: New support links

1.2.1

  • Update: Updated author name and website again per WordPress trademark policy

1.2.0

  • Update: Changed author name from Apos37 to WordPress Enhanced, new Author URI
  • Tweak: Optimization

1.1.3

  • Update: Added My Feeds section to the plugin settings so you can quickly see where you have set them up

1.1.2

  • Update: Added support for file uploads; now shows link to files in Discord embed
  • Update: Added a notice on plugins page if GF is not activated

1.1.1

  • Tweak: Verify compatibility with WP 6.6.2
  • Tweak: Update Gravity Forms logo

1.1.0

  • Fix: Warnings from Plugin Checker

1.0.9

  • Update: Added support for other post custom fields
  • Fix: Multiselect post custom fields not showing all values (props calamarigold)

1.0.8

  • Fix: Fatal error undefined function (props calamarigold)

1.0.7

  • Fix: Multiselect fields not showing all values (props calamarigold)
  • Tweak: Removed required email field (props calamarigold)

1.0.6

  • Update: Added filter for embeds to further customize message
  • Tweak: Added support for mentioning a role via the feed message box using {{@&role_id}}

1.0.5

  • Fix: & symbol displayed as &
  • Fix: Deprecation notice passing # in hexdec()
  • Update: Added support for tagging a channel via the feed message box using {{#channel_id}}
  • Update: Added support for mentioning a user via the feed message box using {{@user_id}} (props yaboinish)
  • Fix: URL back to form entry not working properly

1.0.4

  • Tweak: Removed some comments

1.0.3

  • Tweak: Updated Discord link

1.0.2

  • Update: Added option for removing footer altogether on feeds
  • Update: Added field to form settings for customizing the footer (props enes#4893)
  • Fix: Removed “Test 3” from footer

1.0.1

  • Created plugin on March 16, 2023