by vext0r
0 (0 reviews)
Vextor Quick Form JS
This plugin allows you to make your email forms simpler and easier to use
Compatible with WP 7.0.2
v1.0.3
Current Version v1.0.3
Updated 1 month ago
Last Update on 25 May, 2026
Refreshed 8 hours ago
Last Refreshed on
Rank
#46,826
—
No change
Active Installs
0+
—
No change
KW Avg Position
80
—
No change
Downloads
163
—
Total downloads
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 10
0+
10+
1,273
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 1 more installs to reach 10+
Rank Changes
Current
#46,826
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 |
|---|---|---|---|---|
| antispam | 80 | — | 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
- 1.0.3
- Last Updated
- May 25, 2026
- Requires WP
- 6.3+
- Tested Up To
- 7.0.2
- PHP Version
- 8.0 or higher
- Author
- vext0r
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
Adminify – White Label, Admin Menu Editor, Login Customizer
7K+ installs
#2,734
Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits
30K+ installs
#990
Contact Form 7
10M+ installs
#3
WPForms – AI Form Builder for WordPress – Contact Forms, Payment Forms, Survey Form, Quiz & More
5M+ installs
#9
Jetpack – WP Security, Backup, Speed, & Growth
3M+ installs
#18
Frequently Asked Questions
Common questions about Vextor Quick Form JS
Instead of the standard form tag, you can use a div with the class vextor-form-js Add a button with the data-vextor-send-button attribute inside this div, which will act as a trigger for submitting the form Example: <div class="vextor-form-js"> <input type="text" name="name" required> <input type="hidden" name="subject" value="My Subject"> <input type="file" name="files[]"> <button data-vextor-send-button>Send</button> </div>
Yes, there are several filters and hooks Filters: * add_filter('vextor_form_recipient_email', $email) // Use it to redefine the recipient's Email address * add_filter('vextor_form_translations', $translations) // Use it to replace keys from the form with clear names Example: add_filter('vextor_form_translations', 'my_theme_custom_translations'); function my_theme_custom_translations(array $translations): array { $translations['subject'] = 'My subject'; return $translations; } Actions: * add_action('vextor_before_form_send', $data) * add_action('vextor_form_sent', $data) * add_action('vextor_form_error', $data) There are also JS events: * vextorformjs:prevalidation, {form, button} * vextorformjs:postvalidation, {form, button} * vextorformjs:sending, {form, button} * vextorformjs:error, {form, button, response} * vextorformjs:sent, {form, button, response} Example:
const { form, button } = event.detail; console.log('Form:', form); console.log('Button:', button); });