by Daniel Sturm
0 (0 reviews)
Regex Validation for Gravity Forms
Adds custom regex validation with Unicode support and presets to Gravity Forms fields.
Compatible with WP 7.0.2
v1.1.0
Current Version v1.1.0
Updated 1 month ago
Last Update on 12 Jun, 2026
Refreshed 12 hours ago
Last Refreshed on
Rank
#31,468
—
No change
Active Installs
10+
—
No change
KW Avg Position
46.5
—
No change
Downloads
622
—
Total downloads
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 20
10+
20+
6,033
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 2 more installs to reach 20+
Rank Changes
Current
#31,468
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
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2Unlock 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.1.0
- Last Updated
- Jun 12, 2026
- Requires WP
- 6.0+
- Tested Up To
- 7.0.2
- PHP Version
- 8.3 or higher
- Author
- Daniel Sturm
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Regex Validation for Gravity Forms
Edit your form in Gravity Forms, select a supported field, and look for the "Regex Validation" section under the field settings. You can either select a preset pattern or enter your own custom regex.
Yes! All patterns use the /u flag for PHP and the u flag for JavaScript regex, enabling full Unicode property support like \p{L} for any letter in any language.
Yes, use the gf_regex_validation_presets filter: add_filter('gf_regex_validation_presets', function (array $presets): array { $presets['zip_code'] = [ 'label' => 'US Zip Code', 'pattern' => '/^\d{5}(-\d{4})?$/', 'message' => 'Please enter a valid US zip code.', ]; return $presets; });
Yes, use the gf_regex_validation_field_types filter: add_filter('gf_regex_validation_field_types', function (array $types): array { $types[] = 'number'; return $types; });
Client-side validation provides instant user feedback but should never be relied upon for security. This plugin always performs server-side validation as well, which cannot be bypassed.