Contact Forms

If you haven’t installed our demo content but want to add a contact form to your website, we recommend using the popular Contact Form 7 plugin.

This plugin is included as a recommended plugin with our theme. Once you install and activate it, a basic contact form will be automatically created. You can place it on your page using Elementor.

Alternatively, you can create a custom form by navigating to:
Dashboard → Contact → Add New

For detailed instructions, refer to the Contact Form 7 Documentation.

Encontro Theme Contact Forms Code:

<!-- wp:paragraph -->
<p> Here is the Contact Form 7 template and source code for the Contact form. </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>To edit this form go to  Contact&gt; then edit your targeted form</p>
<!-- /wp:paragraph -->

<!-- wp:code -->
<pre class="wp-block-code"><code>&lt;div id="contactForm"&gt;
    &lt;div class="row"&gt;
        &lt;div class="col-lg-6 col-md-6"&gt;
            &lt;div class="form-group"&gt;
                &lt;label for="name"&gt;Name*&lt;/label&gt;
                &#91;text* your-name class:form-control]
            &lt;/div&gt;
        &lt;/div&gt;
        
        &lt;div class="col-lg-6 col-md-6"&gt;
            &lt;div class="form-group"&gt;
                &lt;label for="email"&gt;Email*&lt;/label&gt;
                &#91;email* your-email class:form-control]
            &lt;/div&gt;
        &lt;/div&gt;
        
        &lt;div class="col-lg-6 col-md-6"&gt;
            &lt;div class="form-group"&gt;
                &lt;label for="subject"&gt;Subject*&lt;/label&gt;
                &#91;text* your-subject class:form-control]
            &lt;/div&gt;
		&lt;/div&gt;
		
		&lt;div class="col-lg-6 col-md-6"&gt;
            &lt;div class="form-group"&gt;
                &lt;label for="number"&gt;Phone Number*&lt;/label&gt;
                &#91;number* your-number class:form-control]
            &lt;/div&gt;
        &lt;/div&gt;
        
        &lt;div class="col-lg-12 col-md-12"&gt;
            &lt;div class="form-group"&gt;
                &lt;label for="message"&gt;Message*&lt;/label&gt;
                &#91;textarea* your-message id:message rows:5 class:form-control]
            &lt;/div&gt;
        &lt;/div&gt;

        &#91;acceptance your-acceptance optional] By checking this, you agree to our &lt;a href="https://www.jibdara.com/tf-wp-demo/elkevent/terms-conditions/"&gt;Terms &lt;/a&gt; and &lt;a href="https://www.jibdara.com/tf-wp-demo/elkevent/privacy-policy/"&gt;Privacy policy&lt;/a&gt; &#91;/acceptance]
 
        
        &lt;div class="col-lg-12 col-md-12"&gt;
            &lt;button type="submit" class="btn btn-primary"&gt;Send Message&lt;/button&gt;
            &lt;div class="clearfix"&gt;&lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;</code></pre>
<!-- /wp:code -->