by GravityWP
5 (9 reviews)
GravityWP – CSS Selector
Easily select CSS Ready Classes for your fields within Gravity Forms
Tested up to WP 6.8.5 (Current: 7.0)
v1.1
Current Version v1.1
Updated 1 year ago
Last Update on 17 Apr, 2025
Refreshed 3 weeks ago
Last Refreshed on
Rank
#3,457
—
No change
Active Installs
4K+
—
No change
KW Avg Position
48
—
No change
Downloads
54.9K
+3 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(9 reviews)
Next Milestone 5K
4K+
5K+
135
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 320 more installs to reach 5K+
Rank Changes
Current
#3,457
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
9 reviews
Overall
100%
5
9
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| css ready classes | 48 | — | Tag | 3 weeks 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.1
- Last Updated
- Apr 17, 2025
- Requires WP
- 3.0.1+
- Tested Up To
- 6.8.5
- PHP Version
- N/A
- Author
- GravityWP
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 9
- 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,707
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#964
MW
MW WP Form
200K+ installs
#266
Crowdsignal Forms
200K+ installs
#271
Brevo - Email, SMS, Web Push, Chat, and more.
100K+ installs
#306
Frequently Asked Questions
Common questions about GravityWP – CSS Selector
Yes, you need to install the Gravity Forms Plugin for this plugin to work. And it needs to be at least v1.5.
You can add your own CSS to the CSS Selector easily in your functions.php file. Just add the following example code there. It adds quick buttons and an accordion on top of the modal. That way you can put easily your own CSS in the layout you want. // Add custom css: quick buttons and accordion at the top of the GravityWP - CSS Selector modal function my_custom_gwp_css_selector_add_css() { $html .= "<div class='gwp_quick_links'> <a class='gwp_css_link' href='#' rel='your_custom_css_class' title='Adds your_custom_css_class to the CSS field'>Custom css</a> <a class='gwp_css_link' href='#' rel='your_custom_css_class_2' title='Adds your_custom_css_class_2 to the CSS field'>2nd custom css</a></div> <li> <a class='gwp_css_acc_link' href='#'>Custom CSS</a> <div class='gwp_css_accordian'> <a class='gwp_css_link' href='#' rel='your_custom_css_class' title='Adds your_custom_css_class to the CSS field'>Custom css</a> <a class='gwp_css_link' href='#' rel='your_custom_css_class_2' title='Adds your_custom_css_class_2 to the CSS field'>2nd custom css</a> </div> </li>"; return $html; } add_filter( 'gwp_css_selector_add_custom_css', 'my_custom_gwp_css_selector_add_css' );