Hi there, I am working on the HTML version of the site. My previous post was marked resolved, although the problem still persists, so I am continuing the thread below. Thank you for your assistance.
I have changed out the emails and contact info within the sendemail.php file, however, when I submit the contact form to test it (on orchidhealth.org) I still get this message, even after filling in all fields.
{ “alert”: “error”, “message”: “Please Fill up all the Fields and Try Again.” }
Can you advise as to possible remedies?
Thank you,
Mitch
Hello,
Please make sure that your Contact Form is enclosed inside the .contact-widget Container for it to work properly. So simply adding the .contact-widget Class to the .contact-form Tag should fix the issue.
Let us know if we can help you with anything else or if you find any further issues.
Thanks & Regards,
SemiColonWeb Team.
I tried adding the contact-widget like so, below, and am still receiving the same error. Did I put it in the wrong place?
<div class=”contact-form contact-widget” style=”background: #77C9D4;”>
<form action=”include/sendemail.php” method=”post”>
<div class=”row”>
<div class=”col-md-12 col-padding” style=” padding-bottom: 0″>
<h2 class=”inline-block”>Send Us a Message</h2>
</div>
</div>
<div class=”row clearfix”>
<div class=”col-md-4 col-padding” style=”padding-top: 0;”>
<p>
Note: Please do not submit any personal
health information information through
this form. This form is not HIPAA secure.
If you choose to submit such in formation
through this form, you agree that Orchid
Health and its affiliates are not responsible
for breaches of HIPAA law relating to
information submitted through this form.
If you are unsure of whether you should
use this form, please call the clinic.
</p>
</div>
<div class=”col-md-4 col-padding xs-no-padding-bottom” style=”padding-top: 0; “>
<input type=”text” class=”form-control margin-bottom-30″ placeholder=”Name”>
<input type=”email” class=”form-control margin-bottom-30″ placeholder=”Email”>
<input type=”text” class=”form-control margin-bottom-30″ placeholder=”Subjet”>
</div>
<div class=”col-md-4 col-padding xs-no-padding-bottom margin-bottom-30″ style=”padding-top: 0″>
<textarea class=”form-control margin-bottom-30″ rows=”5″ placeholder=”Message”></textarea>
<button type=”submit”>
SEND
</button>
</div>
</div>
</form>
</div>