If you used One Click Demo Import than you can skip this step as your form should be already imported. First, make sure that you have installed Contact Form 7 plugin. After this go to Contact -> Contact Forms to view all the forms.
Dinery Contact Form.
Code reference:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<div class="deo-form-fields-wrapper"> <div class="row deo-field-row"> <div class="deo-field-group deo-field-type-input col-lg-6"> <label class="deo-field-label">Your Name <abbr>*</abbr></label><div class="deo-field">[text* your-name]</div></div> <div class="deo-field-group deo-field-type-input col-lg-6"> <label class="deo-field-label">Your Email <abbr>*</abbr></label><div class="deo-field">[email* your-email]</div></div></div> <div class="deo-field-group deo-field-type-textarea"> <label class="deo-field-label">Message</label><div class="deo-field">[textarea your-message x5]</div></div> <div class="deo-field-group deo-field-type-submit"><div class="deo-field">[submit "Send Message"]</div></div></div> |
Dinery Enquiry Form
Code reference:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<div class="deo-form-fields-wrapper"> <div class="row deo-field-row"> <div class="deo-field-group deo-field-type-input col-lg-6"> <label class="deo-field-label">Your Name <abbr>*</abbr></label><div class="deo-field">[text* your-name]</div></div> <div class="deo-field-group deo-field-type-input col-lg-6"> <label class="deo-field-label">Your Email <abbr>*</abbr></label><div class="deo-field">[email* your-email]</div></div></div> <div class="row deo-field-row"> <div class="deo-field-group deo-field-type-input col-lg-6"> <label class="deo-field-label">Your Phone <abbr>*</abbr></label><div class="deo-field">[tel* your-phone placeholder "Phone"]</div></div> <!-- Select Drop-down --> <div class="deo-field-group deo-field-type-input col-lg-6"> <label class="deo-field-label">Event Style</label><div class="deo-field">[select dinery-event-enquiry include_blank "Seated" "Cocktail" "Dinner" "Lunch"]</div></div></div> <div class="row deo-field-row"> <div class="deo-field-group deo-field-type-input col-lg-6"> <label class="deo-field-label">Event Date <abbr>*</abbr></label><div class="deo-field">[date* dinery-event-date min:2020-01-01 max:2020-12-31 step:1 class:required]</div></div> <div class="deo-field-group deo-field-type-input col-lg-6"> <label class="deo-field-label">Number of Guests</label><div class="deo-field">[number* dinery-guests-number min:1 max:50 step:3 class:required]</div></div></div> <div class="deo-field-group deo-field-type-textarea"> <label class="deo-field-label">Message</label><div class="deo-field">[textarea your-message x5]</div></div> <div class="deo-field-group deo-field-type-submit"><div class="deo-field">[submit "Submit"]</div></div></div> |