Title: GravityWP &#8211; Merge Tags
Author: GravityWP
Published: <strong>24 Şubat 2017</strong>
Last modified: 1 Temmuz 2025

---

Eklentilerde ara

![](https://ps.w.org/gravitywp-merge-tags/assets/banner-772x250.jpg?rev=3215179)

![](https://ps.w.org/gravitywp-merge-tags/assets/icon-256x256.jpg?rev=3215179)

# GravityWP – Merge Tags

 [GravityWP](https://profiles.wordpress.org/gravitywp/) tarafından

[İndir](https://downloads.wordpress.org/plugin/gravitywp-merge-tags.1.4.5.zip)

 * [Detaylar](https://tr.wordpress.org/plugins/gravitywp-merge-tags/#description)
 * [Değerlendirmeler](https://tr.wordpress.org/plugins/gravitywp-merge-tags/#reviews)
 *  [Kurulum](https://tr.wordpress.org/plugins/gravitywp-merge-tags/#installation)
 * [Geliştirme](https://tr.wordpress.org/plugins/gravitywp-merge-tags/#developers)

 [Destek](https://wordpress.org/support/plugin/gravitywp-merge-tags/)

## Açıklama

The documentation for GravityWP – Merge Tags is available on [GravityWP.com](https://gravitywp.com/docs/merge-tags/).

This Gravity Forms Add-on adds an admin page to your WordPress back-end with a list
of all the merge tags in your form. Besides that it gives you information (in different
tabs) about field types (for example text, radio, hidden, select, email, checkbox,
etc), Standard (Meta) Gravity Forms Merge Tags (and Merge Tags from GravityView 
and Gravity Flow), a replacement for the all_fields Merge Tag (with or without fileuploads)
and Gravity Flow Step information.

So… no more clicking on a dropdown to select the Merge Tag you need, but just copy
and paste it from the list. And have a quick overview of all relevant information
available for every specific Gravity Form on your site, copy it to Excel and use
it in a way that suits your needs.

The plugin adds a link in the toolbar above the Gravity Form you’re working on and
a menu link in de Forms submenu.

## Ekran Görüntüleri

[⌊List of Merge Tags in your current Gravity Form.⌉⌊List of Merge Tags in your current
Gravity Form.⌉[

List of Merge Tags in your current Gravity Form.

[⌊Advanced Merge Tags (label, merge tag, short merge tag, field type like text, 
radio, hidden, checkbox, select, etc).⌉⌊Advanced Merge Tags (label, merge tag, short
merge tag, field type like text, radio, hidden, checkbox, select, etc).⌉[

Advanced Merge Tags (label, merge tag, short merge tag, field type like text, radio,
hidden, checkbox, select, etc).

[⌊List of Standard Merge Tags (Gravity Forms, GravityView, Gravity Flow).⌉⌊List 
of Standard Merge Tags (Gravity Forms, GravityView, Gravity Flow).⌉[

List of Standard Merge Tags (Gravity Forms, GravityView, Gravity Flow).

[⌊All Fields Tab. You can replace the all_fields merge tag with this and have full
control what is shown.⌉⌊All Fields Tab. You can replace the all_fields merge tag
with this and have full control what is shown.⌉[

All Fields Tab. You can replace the all_fields merge tag with this and have full
control what is shown.

[⌊The menu link that gets added in the Gravity Form toolbar.⌉⌊The menu link that
gets added in the Gravity Form toolbar.⌉[

The menu link that gets added in the Gravity Form toolbar.

[⌊The menu link under Forms (admin menu).⌉⌊The menu link under Forms (admin menu)
.⌉[

The menu link under Forms (admin menu).

[⌊Gravity Flow Step information for the current Gravity Form (Step name, ID, Type,
Active, Conditions)⌉⌊Gravity Flow Step information for the current Gravity Form (
Step name, ID, Type, Active, Conditions)⌉[

Gravity Flow Step information for the current Gravity Form (Step name, ID, Type,
Active, Conditions)

[⌊Conditional Logic information for the current Gravity Form (Show or Hide / Match
All or Any / Rules). Both and overview which fields have active Conditional Logic
rules and which fields are used inside Conditional Logic rules.⌉⌊Conditional Logic
information for the current Gravity Form (Show or Hide / Match All or Any / Rules).
Both and overview which fields have active Conditional Logic rules and which fields
are used inside Conditional Logic rules.⌉[

Conditional Logic information for the current Gravity Form (Show or Hide / Match
All or Any / Rules). Both and overview which fields have active Conditional Logic
rules and which fields are used inside Conditional Logic rules.

[⌊Calculations overview for the current Gravity Form (Formula, Number Format).⌉⌊
Calculations overview for the current Gravity Form (Formula, Number Format).⌉[

Calculations overview for the current Gravity Form (Formula, Number Format).

## Yükleme

Upload the plugin files to the `/wp-content/plugins/gravitywp-merge-tags` directory,
or install the plugin through the WordPress plugins screen directly.

## SSS

### Where can I find the Merge Tags list

You can click on ‘Merge Tags’ in the Toolbar above the Gravity Form you’re working
on. Or you can click on ‘Merge Tags’ in the Forms submenu.

### What Gravity Form information is available?

The plugin provides you with several tabs with information about a specific Gravity
Form.

 * **Merge Tags**: A simple list of Merge Tags available in the Gravity Form.
 * **Advanced**: Field Label, Merge Tag, Short Merge Tag, Field Type.
 * **Dynamic Population**: Query string templates.
 * **Conditional Logic**: An overview of all conditional logic rules in the form.
 * **Calculations**: An overview of all calculations in the form.
 * **Meta**: Available Standard (default) Merge Tags from Gravity Forms, GravityView
   and Gravity Flow.
 * **Workflow**: If you’re using Gravity Flow, you’ll have an extra tab with information
   about the Gravity Flow Steps that are configured within your Gravity Form. It
   provides information about the Step Name, the ID, the Type, if the step is active
   or not, what conditions are set and an automatically generated GravityWP – Count
   Shortcode to use as a counter for Gravity Flow steps.
 * **All Fields**: An alternative for the all_fields Merge Tag, which you can modify
   and customize. Option to select a table with or without fileuploads.

### How can I add merge tags of my own plugin to the Merge Tags Meta tab?

By using the ‘gwp_merge_tags_meta_merge_tags’ filter, for example:

    ```
    add_filter( 'gwp_merge_tags_meta_merge_tags', 'my_plugin', 10, 1 );
    function my_plugin( $gwp_merge_tags ) {
        $gwp_merge_tags['my_plugin']['name']   = 'My custom table';
        $gwp_merge_tags['my_plugin']['url']    = 'https://gravitywp.com';
        $gwp_merge_tags['my_plugin']['values'] = array(
            'merge_tag_1',
            'merge_tag_2',
        );
        return $gwp_merge_tags;
    }
    ```

The $gwp_merge_tags variable is an associative array, which you can add your own
merge tags to.
 $gwp_merge_tags[‘key’] a unique key for your plugin. $gwp_merge_tags[‘
key’][‘name’] contains the title for the table header. $gwp_merge_tags[‘key’][‘url’]
URL for the plugin website. $gwp_merge_tags[‘key’][‘values’] an array with merge
tags.

### How can I report security bugs?

You can report security bugs through the Patchstack Vulnerability Disclosure Program.
The Patchstack team helps validate, triage and handle any security vulnerabilities.
[Report a security vulnerability.](https://patchstack.com/database/vdp/2bc7fde2-aa1f-4013-9d95-6515130a1691)

## İncelemeler

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

### 󠀁[Very Useful](https://wordpress.org/support/topic/very-useful-3176/)󠁿

 [Dax](https://profiles.wordpress.org/daxpod/) 15 Ocak 2023

Offers a lot of useful information for each Gravity Forms form you have.

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

### 󠀁[literal godsend](https://wordpress.org/support/topic/literal-godsend/)󠁿

 [jrobie23](https://profiles.wordpress.org/jrobie23/) 12 Mart 2021 1 yanıt

I have a form with over 300 fields. This plugin is simply amazing!!!! Great work
and thank you!

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

### 󠀁[Very Useful!](https://wordpress.org/support/topic/very-useful-2066/)󠁿

 [richard1st](https://profiles.wordpress.org/richard1st/) 19 Kasım 2019

A real time saver

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

### 󠀁[Excellent!](https://wordpress.org/support/topic/excellent-8170/)󠁿

 [Jess](https://profiles.wordpress.org/jessicafs/) 9 Ekim 2019 1 yanıt

Just what I needed! All the merge tags info on one page – the more I worked with
it the more I loved it! Even has an extra tab with meta merge tags. Had a project
building custom PDF documents with GF data and this plugin is super handy to have.
Thank you!

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

### 󠀁[Hidden Gem for Gravity Forms Users](https://wordpress.org/support/topic/hidden-gem-for-gravity-forms-users/)󠁿

 [janolima](https://profiles.wordpress.org/janolima/) 12 Mayıs 2018

Thank you very much for this great plugin.

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

### 󠀁[Exactly what I needed](https://wordpress.org/support/topic/exactly-what-i-needed-443/)󠁿

 [canarystudio](https://profiles.wordpress.org/canarystudio/) 12 Mayıs 2017 1 yanıt

I needed to populate a confirmation with a heap of fields – this plugin made the
job a breeze. Simple. Perfect.

 [ 6 incelemeyi oku ](https://wordpress.org/support/plugin/gravitywp-merge-tags/reviews/)

## Katkıda Bulunanlar ve Geliştiriciler

“GravityWP – Merge Tags” açık kaynaklı yazılımdır. Aşağıdaki kişiler bu eklentiye
katkıda bulunmuşlardır.

Katkıda bulunanlar

 *   [ GravityWP ](https://profiles.wordpress.org/gravitywp/)

“GravityWP – Merge Tags” 1 dile çevrildi. Katkıda bulundukları için [çevirmenlere](https://translate.wordpress.org/projects/wp-plugins/gravitywp-merge-tags/contributors)
teşekkürler.

[“GravityWP – Merge Tags” eklentisini dilinize çevirin.](https://translate.wordpress.org/projects/wp-plugins/gravitywp-merge-tags)

### Geliştirmeyle ilgilenir misiniz?

[Kodu görüntüleyin](https://plugins.trac.wordpress.org/browser/gravitywp-merge-tags/),
[SVN deposuna](https://plugins.svn.wordpress.org/gravitywp-merge-tags/) göz atın
ya da [RSS](https://plugins.trac.wordpress.org/log/gravitywp-merge-tags/?limit=100&mode=stop_on_copy&format=rss)
ile [geliştirme günlüğüne](https://plugins.trac.wordpress.org/log/gravitywp-merge-tags/)
abone olun.

## Değişiklik Kaydı

#### 1.4.5

 * Security: Sanitize and validate ‘tab’ parameter to prevent potential Local File
   Inclusion. Credits: Nguyen Xuan Chien via Patchstack

#### 1.4.4

 * Removed date field inputs and list field columns from the Merge Tag lists, as
   they do not work for these fields.
 * Add the full checkboxes merge tags on the Merge Tag tab.

#### 1.4.3

 * Added option to use dynamic field labels in All Fields tab.

#### 1.4.2

 * Added JWT prefill string to Dynamic Population tab.

#### 1.4.1

 * Fix admin links for sites using Bedrock.
 * Added Workflow Status button to workflow tab.

#### 1.4

 * Added Generate All Fields Merge Tag tab.
 * Fix for copying a line break when copy and pasting values.
 * Fixed typo in Gview section of Meta tab.
 * Added all current_posts merge tags to Meta tab.
 * Show admin labels in rules of Conditional Logic tab.

#### 1.3

 * Added tab for Calculations.
 * Added tab for Dynamic Population.
 * Added and fixed translations.
 * Added Gravity Forms conditional shortcode to All Fields tab.
 * Added GravityView gvlogic shortcode to All Fields tab.
 * Added sub-input fields to Advanced tab.

#### 1.2

 * Added filter for Meta tab.
 * Added quick links to Merge Tags in top admin menu for recent forms.
 * Added {today} merge tag to standard Merge Tags tab.
 * Fix url query string excel formula template.
 * Include ENCODEURL in excel formula template + localized version.
 * Minor type fixes and code quality improvements.
 * Updated Gravity View Merge Tags list for Meta tab.

#### 1.1.4

 * Added Conditional Logic tab.

#### 1.1.3

 * Advanced tab: Fixed output historical values for deactivated dynamic population.

#### 1.1.2

 * Fix all fields table merge tags (remove spaces).
 * Fix some PHP notices.
 * Added GravityWP Advanced Merge Tags modifiers.

#### 1.1.1

 * Workflow tab: displays labels of workflow conditions
 * Updated the Gravity Forms merge tag section with the changed payment merge tags
   and some new merge tags.

#### 1.1

 * Compatibility with Gravity Forms 2.5 User Interface
 * Merged Admin tab into Advanced tab
 * Advanced tab: Improved UI with options to toggle columns
 * Advanced tab: Optionally include display only fields like section and html
 * Advanced tab: Optionally include Merge Tags for radio / checkboc choices
 * Added a link to our (premium) Advanced Merge Tag plugin
 * Security enhancements
 * Various small changes / fixes

#### 1.0.3

 * Added default Gravity Forms editor menu
 * Fix HTML error on first page
 * Added column for Gravity Flow Step conditions
 * Added dynamic population query urls templates

#### 1.0.2

 * Improved table layout (to wp-list-table widefat striped)
 * Rearrange tabs (information about forms merge tags first, than standard merge
   tags)
 * Renamed tabs (shorter descriptions, more focussed)

#### 1.0.1

 * Updated capabilities to give everyone with ‘gravityforms_edit_forms’ capability
   the possibility to see the Merge Tag page (thank you @siwax)

#### 1.0

 * Solved the link from the form menu to the Merge Tag page giving errors
 * Tested the plugin with many testers. Ready for version 1.0

#### 0.9

 * Added the ‘Admin’ tab, with an overview of Admin Labels, Dynamic Population, 
   CSS and Field Type in one overview. Ideal if you want to quickly see what CSS
   is used per field or what text you should use when generating an url with arguments(
   populate)
 * Made the code more readable, added comments

#### 0.8

 * Removed code that added specific extra merge tags because of problems after updating
   to GF version 2.3

#### 0.7

 * Added a tab for Gravity Flow (when active) to show a table with Gravity Flow 
   Step, Step ID, Step Type, Step Active and GravityWP – Count shortcode in combination
   with Gravity Flow

#### 0.6

 * Changed tabs layout to make it more convenient to copy and paste to Excel
 * First tab with only Merge Tags from the current form
 * Second tab (advanced) with more detailed information about the field: Label, 
   Merge Tag, Short Merge Tag, Field Input Type
 * Third tab with Standard Gravity Forms Merge Tags
 * New tab (All Fields) to replace the allfields Merge Tag from Gravity Forms. It
   generates a table you can copy and paste and a table without fileuploads (in 
   case you don’t want to communicate links to files)

#### 0.5

 * Added Tabs
 * Styled the lists
 * Added overview of Field Labels
 * Added overview of Field Types
 * Removed the shortcode for generating the Merge Tags list
 * Added text-domain for translations

#### 0.4

 * Added Gravity Forms standard Merge Tags
 * Added GravityView specific Merge Tags
 * Added Gravity Flow specific Merge Tags

#### 0.3

 * Added admin page with all the merge tags of a specific form
 * Added menu links in the sidebar and in the Gravity Forms toolbar

#### 0.2

 * Added check if Gravity Forms is installed
 * Return instead of echo, so the list will be placed in the right place on the 
   page

#### 0.1

 * First launch of the shortcode to show all merge tags

## Meta

 *  Sürüm **1.4.5**
 *  Son güncelleme **1 yıl önce**
 *  Etkin kurulumlar **2.000+**
 *  WordPress sürümü ** 3.0.1 veya üstü **
 *  Test edilen sürüm **6.8.5**
 *  Diller
 * [Dutch](https://nl.wordpress.org/plugins/gravitywp-merge-tags/) ve [English (US)](https://wordpress.org/plugins/gravitywp-merge-tags/).
 *  [Dilinize çevirin](https://translate.wordpress.org/projects/wp-plugins/gravitywp-merge-tags)
 * Etiketler
 * [form](https://tr.wordpress.org/plugins/tags/form/)[gravity forms](https://tr.wordpress.org/plugins/tags/gravity-forms/)
   [merge tag](https://tr.wordpress.org/plugins/tags/merge-tag/)
 *  [Gelişmiş görünüm](https://tr.wordpress.org/plugins/gravitywp-merge-tags/advanced/)

## Puanlar

 5 üzerinden 5 yıldız.

 *  [  6 5 yıldızlı inceleme     ](https://wordpress.org/support/plugin/gravitywp-merge-tags/reviews/?filter=5)
 *  [  0 4 yıldızlı inceleme     ](https://wordpress.org/support/plugin/gravitywp-merge-tags/reviews/?filter=4)
 *  [  0 3 yıldızlı inceleme     ](https://wordpress.org/support/plugin/gravitywp-merge-tags/reviews/?filter=3)
 *  [  0 2 yıldızlı inceleme     ](https://wordpress.org/support/plugin/gravitywp-merge-tags/reviews/?filter=2)
 *  [  0 1 yıldızlı inceleme     ](https://wordpress.org/support/plugin/gravitywp-merge-tags/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/gravitywp-merge-tags/reviews/#new-post)

[Tüm değerlendirmeleri görün](https://wordpress.org/support/plugin/gravitywp-merge-tags/reviews/)

## Katkıda bulunanlar

 *   [ GravityWP ](https://profiles.wordpress.org/gravitywp/)

## Destek

Söyleyeceğiniz bir şey mi var? Yardım mı lazım?

 [Destek forumunu görüntüle](https://wordpress.org/support/plugin/gravitywp-merge-tags/)