G
by goldenapples
0 (0 reviews)
Gravity Forms Janrain Add-on
Integrate Gravity Forms with Janrain Engage social login to pre-fill forms.
Tested up to WP 3.5.2 (Current: 6.9.4)
v0.3
Current Version v0.3
Updated 12 years ago
Last Update on 20 Aug, 2013
Refreshed 6 hours ago
Last Refreshed on
Rank
#35,138
—
No change
Active Installs
10+
—
No change
KW Avg Position
48
—
No change
Downloads
2.2K
+1 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 20
10+
20+
10,731
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 4 more installs to reach 20+
Rank Changes
Current
#35,138
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 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| form prefill | 48 | — | Tag | 1 day 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
- 0.3
- Last Updated
- Aug 20, 2013
- Requires WP
- 3.4+
- Tested Up To
- 3.5.2
- PHP Version
- N/A
- Author
- goldenapples
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 NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,720
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
MW
MW WP Form
200K+ installs
#266
Crowdsignal Forms
200K+ installs
#282
Newsletters, Email Marketing, SMS and Popups by Omnisend
100K+ installs
#306
Frequently Asked Questions
Common questions about Gravity Forms Janrain Add-on
NOTE: some extended profile fields are only available to Plus or higher service levels.
This plugin has been designed to be easy to extend. If you want to add more fields, you will need to hook a function to the filter janrain_gforms_profile_data that defines the name of the field you want to add, and the function to get its data. This filter recieves the array of core fields as its argument, so if you need to redefine one of the core fields, this is the place to do that as well. For example, the following code will make a new field available called "religion"; which pulls any data the user has entered as their "religion" on Facebook (or any other provider that includes that field): add_filter( 'janrain_gforms_profile_data', 'add_religion_field' ); function add_religion_field( $fields ) { $fields['religion'] = array( 'name' => 'Religion', 'function' => 'religion_field' ); return $fields; } function religion_field( $profile ) { return $profile->merged_poco->religion; }