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.

Traba Theme Contact Forms Code:

<div class="row justify-content-center">
    <div class="col-lg-6 col-md-12">
        <div class="form-group">[text* name class:form-control placeholder "Name"]</div>
    </div>
    <div class="col-lg-6 col-md-12">
        <div class="form-group">[email* youremail class:form-control placeholder "Email"]</div>
    </div>
    <div class="col-lg-6 col-md-12">
        <div class="form-group">[number* phoneno class:form-control placeholder "Phone No"]</div>
    </div>
    <div class="col-lg-6 col-md-12">
        <div class="form-group">[text* subject class:form-control placeholder "Subject"]</div>
    </div>
    <div class="col-lg-12 col-md-12">
        <div class="form-group">[textarea* msg_subject class:form-control placeholder "Your Message Here"]</div>
    </div>
    <div class="col-lg-12 col-md-12">
        <div class="form-group"><div class="form-check"><input class="form-check-input" type="checkbox" id="check1"><label class="form-check-label" for="check1">Save my name, email, and website in this browser for the next time I message.</label></div></div>
    </div>
    <div class="col-lg-12 col-md-12"><button type="submit" class="default-btn">Send Message Now<i class="ti ti-arrow-narrow-right"></i></button>
    </div>
</div>