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.

Hospa Theme Contact Forms Code:

<div class="form-group">
    <label>Your Message*</label>
    [textarea your-message class:form-control placeholder "Please write your message here"]
</div>

<div class="form-group">
    <label>Name*</label>
    [text your-name class:form-control placeholder "Please enter name"]
</div>

<div class="form-group">
    <label>Email*</label>
    [email your-email class:form-control placeholder "Please enter your email address"]
</div>
<div class="form-group">
    <label>Phone*</label>
    [number your-number class:form-control placeholder "Please enter your phone number"]
</div>

<div class="form-group">
    <label>Website*</label>
    [text your-website class:form-control placeholder "Please enter your website"]
</div>

<div class="form-group">
    [acceptance  gdpr class:gdpr-term ] I agree with the terms.[/acceptance]
</div>

<button type="submit" class="default-btn">
    <i class="ti ti-circle-arrow-right-filled"></i>
    Send Message Now
</button>