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 and select Contact form 1. Here is the code reference for the contact form
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<div class="deo-form-fields-wrapper"> <div class="deo-field-group deo-column"> <label class="deo-field-label">Your Name <abbr>*</abbr></label><div class="deo-field deo-field-type-input">[text* your-name]</div></div> <div class="deo-field-group deo-column"> <label class="deo-field-label">Your Email <abbr>*</abbr></label><div class="deo-field deo-field-type-input">[email* your-email]</div></div> <div class="deo-field-group deo-column"> <label class="deo-field-label">Subject</label><div class="deo-field deo-field-type-input">[text subject]</div></div> <div class="deo-field-group deo-column"> <label class="deo-field-label">Your Message</label><div class="deo-field deo-field-type-textarea">[textarea your-message x7]</div></div> <div class="deo-field-group deo-column"> <div class="deo-field deo-field-type-submit">[submit "Send Message"]</div></div> </div> |