Create contact form

For creating a contact form for WordPress theme Iknow, you can install the plugin ‘Contact Form 7’

  1. Install and activate the free plugin ‘Contact Form 7
  2. Create the necessary form
  3. For design, you can use the HTML elements from the site https://bulma.io/
  4. Insert the form shortcode on the page

The code uses in demo page ‘Contact’:

<div class="field is-grouped">
  <div class="control is-expanded">
    [text* your-name class:input placeholder "Name"]
  </div>
  <div class="control is-expanded">
    [email* your-email class:input placeholder "Email"]
  </div>
</div>
<div class="field">
  <div class="control">
    [text* your-subject class:input placeholder "Subject"]
  </div>
</div>
<div class="field mb-6">
  <div class="control">
    [textarea* your-message class:textarea placeholder "Write something..."]
  </div>
</div>
<div class="field my-5">
  <div class="control has-text-centered">
    [submit class:button class:is-primary "Submit"]
  </div>
</div>