plugin-icon

Essential Form – The lightest plugin for contact forms, ultra lightweight and no spam

Il plugin per moduli di contatto per WordPress più leggero in assoluto. Così essenziale, che o lo ami o lo odi. Ultra leggero e nessuno spam.
Votazioni
5
Ultimo aggiornamento
May 18, 2024
Versione
0.0.8
Installazioni attive
200
Essential Form – The lightest plugin for contact forms, ultra lightweight and no spam

Use the shortcode [essential_form] where you want a contact form with the fields: name, email, message, and agreement checkbox.

Essential Form has a very powerful inbuilt anti-spam system that will block all the robots. It will not be possible for robots to send you spam. Only humans will be able to do it manually.

Most of the time, in your contact form you just need the fields name, email, message, and an agreement checkbox. If you need more, this plugin is not for you. In that case install a Contact Form plugin like Contact Form 7.

Essential Form adds no HTTP requests. It consumes zero. When we say it’s the lightest contact form we are not joking at all.

L’intero zip del plugin è di 14 kB. Nella pagina dove inserisci lo shortcode aggiunge un minuscolo script di puro Vanilla JavaScript che è di circa 1 kilobyte. Nelle pagine dove non ci sono moduli di contatto, ovviamente, questo non esiste.

No jQuery, no libraries, nothing of this kind of bloated stuff.

The anti-spam system runs behind the scenes in a very clever way without the need for any annoying captcha or other similar systems which some times even fail.

Giusto per dare un’idea del livello di sicurezza del plugin, il nome dell’azione Ajax che si occupa dell’invio dell’email è una cosa del tipo essential_form_fbe52b696, dove l’ultima parte è diversa su ogni sito.

I robot non saranno mai in grado di indovinare i nomi delle funzioni coinvolte durante il processo.

Inoltre, il processo di invio si basa su un token generato casualmente che è sempre diverso per ogni invio del modulo, e su 20 chiavi casuali che sono uniche per ogni sito.

Il sistema anti-spam lavora dietro le quinte senza disturbare gli utenti, e soprattuto, funziona.

How to add a contact form on the page

  • Add the shortcode [essential_form]
  • Done!

Features of the contanct form

  • Extremely lightweight. It inlines 1 kb (when the document is compressed it will be even smaller) of pure Vanilla JavaScript only on the page where you add the shortcode, and never above the fold. On the other pages, it doesn’t exist. We can say it exists on the page where you add the shortcode only because you see the contact form, in another case, it would be impossible to see that this plugin exists on that page. No tools will be able to measure consumption due to this plugin.
  • The contact form will have only the fields name, email, message, and an agreement checkbox. Nothing else. If you need more, better you use a different plugin. If those fields are all that you need, you will love this plugin.
  • It inherits the style of your theme. If you want a different style, you need to write your custom CSS or use a different plugin.
  • It has a very powerful anti-spam system. It will be impossible for robots to send spam through the contact form. Only humans can send spam manually.
  • No need for annoying captcha or similar systems that make visitors lose their nerves. The anti-spam system is behind the scenes, and it’s very powerful.

Parametri per lo shortcode

  • label_email
  • label_message
  • button_text
  • agreement_text
  • success_message

If assigned, the shortcode will look like [essential_form label_emal=”Your email” lable_message=”Your message” button_text=”Send” agreement_text=”You agree with our privacy policy” success_message=”Thank you for your message!”]

If you don’t assign the parameters of the shortcode, the plugin will take the default settings.

Come personalizzare i moduli di contatto

You can also customize the contact forms throught the filter hook ‘essential_form_settings’.

Here an example.

add_filter( 'essential_form_settings',function( $options ){ return array( 'email_from' => 'youremail@mail.com', 'email_to' => 'youremail@mail.com', 'email_subject' => sprintf( esc_html__( 'Message from %s','your-domain' ),get_bloginfo( 'name' ) ), 'label_name' => __( 'Name','your-domain' ), 'label_email' => __( 'Email','your-domain' ), 'label_message' => __( 'Message','your-domain' ), 'button_text' => __( 'Send','your-domain' ), 'agreement_text' => __( 'By submitting this form I agree with the privacy policy','your-domain' ), 'success_message' => __( 'Form submitted successfully! Thank you for your message!','your-domain' ), 'name_missing_error' => __( 'Name is a required field!','your-domain' ), 'email_missing_error' => __( 'Email is a required field!','your-domain' ), 'email_not_valid_error' => __( 'Email not valid!','your-domain' ), 'message_missing_error' => __( 'Message is a required field!','your-domain' ), 'message_too_long_error' => __( 'This message is too long! Please, write not more than 50000 characters.','your-domain' ), 'missing_agreement_error' => __( 'You have to agree with our privacy policy to submit the form.','your-domain' ) ); } );

If you need to do a custom action after the sending of the email, you can use the action hook ‘essential_form_after_sending’.

Here an example.

add_action( 'essential_form_after_sending',function( $name,$email,$message,$post_id ){ //$name is the name of the user who submitted the contant form //$message is the message which is sent through the contact form //$post_id is the ID of the page where is included the contact form //Your code here },10,4 );

If you need to customize the message that is included in the email, use the filter hook ‘essential_form_message’.

Here you have an example.

add_filter('essential_form_message',function( $message,$name,$email,$post_id ){ if( isset( $_SERVER['REMOTE_ADDR'] ) ){ $message .= '<p>IP: '.sanitize_text_field( $_SERVER['REMOTE_ADDR'] ).'</p>'; } return $message; },10,4 );

If you need to customize the agreement text, use the filter hook ‘essential_form_agreement_text’.

Here you have an example.

add_filter( 'essential_form_agreement_text',function( $text ){ return 'By submitting this form I agree with the <a href="https://yourdomain.com/privacy-policy/">Privacy Policy</a>'; } );

Limitazioni

The limits of Essential Form are many, but they are what make this plugin the best if you need a ultra-lightweight contact form with just name, email, comment, and privacy agreement. If you need more, you can always install more complete but also heavier contact forms like:

Contact Form 7 WPForms Forminator Formidable Forms Ninja Forms

e molti altri plugin straordinari per moduli di contatto.

How to speed up the form submission and avoid conflicts with other plugins

  • Install and activate Freesoul Deactivate Plugins
  • Go to Freesoul Deactivate Plugins => Plugin Manger => Actions => Essential Form
  • Deactivate all the plugins for the actions “Getting secret key during submission” and “Form submission”

By using Freesoul Deactivate Plugins to clean up all the other plugins, the form submission will be faster and without any conflict with third plugins.

Demo

You can see Essential Form in action on my blog post The Lightest Contact Form Plugin Ever You don’t need any demo for the backend, because there are no settings for this plugin. Just use the shortcode [essential_form] where you want to add the form, and customized as mentioned in the description.

Gratuitosul piano Creator
Installazioni attive
200
Testato fino alla versione
6.5.5
Questo plugin è disponibile per il download da usare sulla tua installazione WordPress ospitata personalmente.