Title: Add-On for Discord and Gravity Forms
Author: PluginRx
Published: <strong>मार्च 24, 2023</strong>
Last modified: जुन 2, 2025

---

प्लगिनहरू खोज्नुहोस्

![](https://ps.w.org/gf-discord/assets/banner-772x250.png?rev=3166001)

![](https://ps.w.org/gf-discord/assets/icon-256x256.png?rev=2886595)

# Add-On for Discord and Gravity Forms

 [PluginRx](https://profiles.wordpress.org/apos37/) द्वारा

[डाउनलोड गर्नुहोस्](https://downloads.wordpress.org/plugin/gf-discord.1.3.0.zip)

 * [विवरण](https://ne.wordpress.org/plugins/gf-discord/#description)
 * [समीक्षाहरू](https://ne.wordpress.org/plugins/gf-discord/#reviews)
 *  [स्थापना](https://ne.wordpress.org/plugins/gf-discord/#installation)
 * [विकास](https://ne.wordpress.org/plugins/gf-discord/#developers)

 [सहायता](https://wordpress.org/support/plugin/gf-discord/)

## विवरण

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

## स्क्रिनसटहरू

 * [[
 * Plugin settings page
 * [[
 * Form feed settings page
 * [[
 * Entry page
 * [[
 * Discord channel post

## स्थापना

 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.

## प्रश्नोत्तर

### Where can I request features and get further support?

We recommend using our [website support forum](https://pluginrx.com/support/plugin/gf-discord/)
as the primary method for requesting features and getting help. You can also reach
out via our [Discord support server](https://discord.gg/3HnzNEJVnR) or the [WordPress.org support forum](https://wordpress.org/support/plugin/gf-discord/),
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](https://support.discord.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID)
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()
    ?>
    ```

## समीक्षाहरू

![](https://secure.gravatar.com/avatar/44d6acf55a0773c0e5de1cf62dedea1fdcb6f9b143de6d12d3b89c6a0e837d0e?
s=60&d=retro&r=g)

### 󠀁[Works perfectly! Active dev](https://wordpress.org/support/topic/works-perfectly-active-dev/)󠁿

 [calamarigold](https://profiles.wordpress.org/calamarigold/) मार्च 28, 2024

Does just what i need it to do, very glad this is a thing. Dev is very active too
and fixed issues quickly 🙂

 [ सबै 1 समीक्षा पढ्नुहोस् ](https://wordpress.org/support/plugin/gf-discord/reviews/)

## योगदानकर्ता र डेभलपरहरू

“Add-On for Discord and Gravity Forms” खुला स्रोत सफ्टवेयर हो। निम्न व्यक्तिहरूले
यो प्लगिनमा योगदान गरेका छन्।

योगदानकर्ताहरू

 *   [ PluginRx ](https://profiles.wordpress.org/apos37/)

[“Add-On for Discord and Gravity Forms” लाई आफ्नो भाषामा अनुवाद गर्नुहोस्](https://translate.wordpress.org/projects/wp-plugins/gf-discord)

### विकासमा रुचि छ?

[आरएसएस](https://plugins.trac.wordpress.org/log/gf-discord/?limit=100&mode=stop_on_copy&format=rss)
द्वारा [कोड ब्राउज गर्नुहोस्](https://plugins.trac.wordpress.org/browser/gf-discord/),
[एसभीएन रिपजिटरी](https://plugins.svn.wordpress.org/gf-discord/) हेर्नुहोस्, वा 
[विकास लग](https://plugins.trac.wordpress.org/log/gf-discord/) को सदस्यता लिनुहोस्।

## चेन्जलग

#### 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

## मेटा

 *  संस्करण **1.3.0**
 *  पछिल्लो अपडेट **11 महिना अघि**
 *  सक्रिय स्थापना **50+**
 *  वर्डप्रेस संस्करण ** 5.9 वा उच्च **
 *  जाँच गरिएको **6.8.5**
 *  PHP संस्करण ** 7.4 वा उच्च **
 *  भाषा
 * [English (US)](https://wordpress.org/plugins/gf-discord/)
 * ट्यागहरू
 * [discord](https://ne.wordpress.org/plugins/tags/discord/)[forms](https://ne.wordpress.org/plugins/tags/forms/)
   [gravity](https://ne.wordpress.org/plugins/tags/gravity/)[server](https://ne.wordpress.org/plugins/tags/server/)
   [webhook](https://ne.wordpress.org/plugins/tags/webhook/)
 *  [उन्नत दृश्य](https://ne.wordpress.org/plugins/gf-discord/advanced/)

## रेटिङ्गहरू

 ५ मा 5 तारा।

 *  [  1 5-तारा समीक्षा     ](https://wordpress.org/support/plugin/gf-discord/reviews/?filter=5)
 *  [  0 4-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/gf-discord/reviews/?filter=4)
 *  [  0 3-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/gf-discord/reviews/?filter=3)
 *  [  0 2-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/gf-discord/reviews/?filter=2)
 *  [  0 1-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/gf-discord/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/gf-discord/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/gf-discord/reviews/)

## योगदानकर्ताहरू

 *   [ PluginRx ](https://profiles.wordpress.org/apos37/)

## सहायता

केही भन्नु छ? सहयोग चाहियो?

 [सहायता फोरम हेर्नुहोस्](https://wordpress.org/support/plugin/gf-discord/)