by GravityWP
5 (6 reviews)
GravityWP - Merge Tags
Adds an admin page to show the merge tags and form information of a specific Gravity Form.
Tested up to WP 6.8 (Current: 6.9)
v1.4.5
Current Version v1.4.5
Updated 6 months ago
Last Update on 01 Jul, 2025
Synced 9 hours ago
Last Synced on
Rank
#4,750
-3 this week
Active Installs
2K+
—
No change
KW Avg Position
11.7
—
No change
Downloads
38.4K
+6 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(6 reviews)
Next Milestone 3K
2K+
3K+
328
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 341 more installs to reach 3K+
Rank Changes
Current
#4,750
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
6 reviews
Overall
100%
5
6
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| mergetags | 1 | — | Tag | 10 hours ago |
| mergetag | 2 | — | Tag | 10 hours ago |
| merge tag | 32 | — | Tag | 10 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.4.5
- Last Updated
- Jul 01, 2025
- Requires WP
- 3.0.1+
- Tested Up To
- 6.8
- PHP Version
- N/A
- Author
- GravityWP
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 6
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,738
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
MW
MW WP Form
200K+ installs
#262
Newsletters, Email Marketing, SMS and Popups by Omnisend
200K+ installs
#279
Crowdsignal Forms
100K+ installs
#306
Frequently Asked Questions
Common questions about GravityWP - Merge Tags
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.
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.
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.
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.