Lite Contact Form
by Beherit 5 (1 reviews)

Lite Contact Form

Lightweight and simple contact form with no additional user-unfriendly options. Can be additionally protected against spam by using Akismet and Google …

Lite Contact Form ranks #15,323 among WordPress.org plugins with 100+ active installations, is #610 of 3,358 in the Communication category, a 5/5 rating from 1 reviews, and was last updated Feb 16, 2022. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 5.9.16 (Current: 7.1)
v1.1.6 Current Version v1.1.6
Updated 4 years ago Last Update on 16 Feb, 2022
Refreshed 8 hours ago Last Refreshed on
#610 of 3,358 in Communication Top 25% by installs No update in over a year
View on WordPress.org
Rank
#15,323
No change
Active Installs
100+
-32.4%
KW Avg Position
N/A
No change
Downloads
6.3K
+1 today
Support Resolved
0%
No change
Rating
100%
Review 5 out of 5
5 (1 reviews)

Next Milestone 200

Total Progress 44%
100+ 200+
2,364
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
Upgrade to Pro
Need 56 more installs to reach 200+

Rank Changes

15,207 15,231 15,254 15,277 15,301 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
15,197 15,223 15,250 15,276 15,302 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
Current #15,323
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
0 10 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

5.0
1 reviews
Overall 100%
5
1 (100%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Security History

Source: WPVulnerability

No known vulnerabilities on record for Lite Contact Form. Checked 1 month ago.

TL;DR

AI summary of the plugin's readme

This plugin is for WordPress site owners who want a simple way to add a contact form without unnecessary configuration options. It solves the problem of receiving spam through the form by integrating with Akismet and GreCAPTCHA for protection.

  • Add form via shortcode
  • Akismet integration
  • GreCAPTCHA integration
  • Spam protection

Frequently Asked Questions

Common questions about Lite Contact Form

By default, the plugin uses the administrator's email address which is set in the WordPress general settings. It can be changed by adding attributes to the shortcode. [contact_form sender="noreply@domain.tld" recipient="Blog Admin <admin@domain.tld>"]
The plugin has no built-in spam protection features, but is integrated with other plugins which do that job in the best way. You can use for it plugin Akismet or/and GreCAPTCHA.
Yes. The plugin was designed to work with cache plugins. It uses lightweight Vanilla JS script and WordPress REST API to process requests.
By default, the fields description is displayed in placeholders, but you can change it to labels. [contact_form style="labels"] If you want only to change CSS style just add selectors to file style.css in active theme or create new file lite-contact-form.css in active theme.
The plugin is simple and there are no settings to add custom fields, you need to add PHP code e.g. in functions.php in the active theme. Use the add_filter function to add a custom field, there are three filters that you can use. function custom_fields_before() { return '<p class="lcf-validate"> <input type="text" name="test" placeholder="Field with JS validation"> <span class="lcf-tip"></span> </p>'; } add_filter('lcf_before_fields', 'custom_fields_before'); function custom_fields_before_message() { return '<p> <input type="text" name="test" placeholder="Field without JS validation"> <span class="lcf-tip"></span> </p>'; } add_filter('lcf_before_message_field', 'custom_fields_before_message'); function custom_fields_after() { return 'some html code'; } add_filter('lcf_after_fields', 'custom_fields_after'); You can validates the entire request or only your field. function custom_field_validate($result, $field, $value) { if(empty($value)) { $result['status'] = 'blocked'; $result['fields'][] = array('field' => $field, 'message' => 'This field is required.'); } return $result; } add_filter('lcf_validate_field_name', 'custom_field_validate', 10, 3); function custom_validate_request($result, $fields) { if(...) { $result['status'] = 'error'; $result['message'] = 'There was an error trying to send your message.'; } return $result; } add_filter('lcf_validate', 'custom_validate_request', 10, 2); There are two more filters that you can use to change the email subject and the message body. function custom_mail_subject($subject, $fields) { return $subject; } add_filter('lcf_mail_subject', 'custom_mail_subject', 10, 2); function custom_mail_message($message, $fields) { return $message; } add_filter('lcf_mail_message', 'custom_mail_message', 10, 2);

More plugins by Beherit

Sign In / Register

You need to sign in or register to use this feature.