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.

Beron Theme Contact Forms Code:

<!-- Contact Section Start -->
<div class="row justify-content-center">
    <div class="col-lg-6 col-md-12">
        <div class="form-group">
            [text* text-28 class:form-control placeholder "Enter your name"]
        </div>
    </div>
    <div class="col-lg-6 col-md-12">
        <div class="form-group">
            [email* email-574 class:form-control placeholder "Enter your email"]
        </div>
    </div>
    <div class="col-lg-6 col-md-12">
        <div class="form-group">
            [text* text-786 class:form-control placeholder "Subject"]
        </div>
    </div>
    <div class="col-lg-6 col-md-12">
        <div class="form-group">
           [number* number-193 class:form-control "981234567890"]
        </div>
    </div>
    <div class="col-lg-12 col-md-12">
        <div class="form-group">
            [textarea* textarea-510 class:form-control placeholder] Write a message [/textarea*]
        </div>
    </div>
    <div class="col-lg-12 col-md-12">
        <button type="submit" class="default-btn">Send A Message</button>
    </div>
</div>
<!-- Contact Section End -->