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.

Cyarb Theme Contact Forms Code:

<div class="row">
    <div class="col-lg-6 col-md-6 col-sm-6">
        <div class="form-group">
            <label>Your Name</label>
            [text* fname class:form-control]
        </div>
    </div>
    <div class="col-lg-6 col-md-6 col-sm-6">
        <div class="form-group">
            <label>Email Address</label>
            [email* email class:form-control]
        </div>
    </div>
    <div class="col-lg-6 col-md-6 col-sm-6">
        <div class="form-group">
            <label>Phone Number</label>
            [text* phone_number class:form-control]
        </div>
    </div>
    <div class="col-lg-6 col-md-6 col-sm-6">
        <div class="form-group">
            <label>Subject</label>
            [text* subject class:form-control]
        </div>
    </div>
    <div class="col-lg-12 col-md-12 col-sm-12">
        <div class="form-group">
            <label>Message...</label>
            [textarea* message rows:4 class:form-control]
        </div>
    </div>
    <div class="col-lg-12 col-md-12 col-sm-12">
        [acceptance acceptance-910] By checking this, you agree to our <a href="https://themes.envytheme.com/cyarb/terms-conditions/">Terms </a> and <a href="https://themes.envytheme.com/cyarb/privacy-policy/">Privacy policy</a> [/acceptance]
    </div>
    <div class="col-lg-12 col-md-12 col-sm-12">
        <button type="submit" class="default-btn"><span>Send Message</span></button>
    </div>
</div>