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.

Limpo Theme Contact Forms Code:

<div class="contact-us-form">
    <div class="content section-title-animation animation-style2">
        <span class="sub">We'd Love To Hear From You!</span>
        <h2 class="title-animation">Get in Touch with Neato</h2>
    </div>
    <form>
        <div class="row justify-content-center g-4">
            <div class="col-lg-12 col-md-12">
                <div class="form-group"> 
                    <label>Full Name</label>
                    [text* text-731 class:form-control placeholder "e.g. Emily Carter"]
                </div>
            </div>
            <div class="col-lg-12 col-md-12">
                <div class="form-group"> 
                    <label>Email Address</label>
                    [email* email-870 class:form-control placeholder "e.g. [email protected]"]
                </div>
            </div>
            <div class="col-lg-12 col-md-12">
                <div class="form-group"> 
                    <label>Phone Number</label>
                    [number* number-906 class:form-control "+12135553890"]
                </div>
            </div>
            <div class="col-lg-12 col-md-12">
                <div class="form-group"> 
                    <label>Subject</label>
                    [text* text-260 class:form-control placeholder "e.g. Enter your subject"]
                </div>
            </div>
            <div class="col-lg-12 col-md-12">
                <div class="form-group"> 
                    <label>Service Type</label>
                    [select* select-669 class:form-select class:form-control "Select a Service" "Standard Cleaning" "Deep Cleaning" "Move-In/Move-Out"]
                </div>
            </div>
            <div class="col-lg-12 col-md-12">
                <div class="form-group"> 
                    <label>Message</label>
                    [textarea* textarea-533 class:form-control placeholder] e.g. How can we help? [/textarea*]
                </div>
            </div>
             <div class="col-lg-12 col-md-12">
                <div class="form-group">
                    <div class="form-check">
                        [acceptance privacy_policy class:form-check-input]
                        <label class="form-check-label">
                            I confirm that I have read and agree to the 
                            <a href="http://limpo.local/privacy-policy/" target="_blank">
                                Privacy Policy
                            </a>.
                        </label>
                    </div>
                </div>
            </div>
            <div class="col-lg-12 col-md-12">
                <button type="submit" class="default-btn">
                    <span>Submit Request</span>
                </button>
            </div>
        </div>
    </form>
</div>