Contact Form 7

Contact Form 7 is our recommended form plugin for WordPress. It is a simple but powerful form creator for WordPress. Here we will show you how to use Contact Form 7 to create and edit a basic form.

After Contact Form 7 is installed, you will find a new menu item in your WordPress admin area called Contact, here is where your forms and created and edited. From the Contact main screen, you will see your first contact form, it’s usually a default form called Contact Form 1 OR if you have imported the demo data for our theme you may see a few forms that we have made especially for you.

 

<div class="row">
    <div class="col-md-6">
        <label for="contact-name">Your Name*: </label>[text* your-name id:contact-name placeholder "Your Name"]  
     </div>

    <div class="col-md-6">
        <label for="contact-email"> Your Email*:</label>[email* your-email id:contact-email placeholder "Your Email"] 
     </div>

    <div class="col-md-12">
       <label for="contact-subject">Your Subject:</label>[text your-subject id:contact-subject placeholder "Your Subject"]
     </div>

    <div class="col-md-12">
       <label for="contact-message"> Your Message*: </label>[textarea* your-message id:contact-message placeholder "Your Message"]
     </div>

    <div class="col-md-12 text-right">
        [submit "Send message"]
    </div>
</div>

You can add additional input from the right drop down, after setting up your form click Save button from the right.

Was this helpful to you?