CF7 Not submitting
-
I am building a custom wp theme and for some reason, the cf7 is not submitting. It is, however, redirecting but to a search results page. I see no errors in the console. Any help would be appreciated. I will show the form I used in the admin panel as well as the contact form code.
<div class="col-md-7 col-md-push-1 animate-box"> <div class="row"> <div class="col-md-6"> <div class="form-group"> [text* your-name class:form-control placeholder"Name"] </div> </div> <div class="col-md-6"> <div class="form-group"> [email* your-email class:form-control placeholder"Email"] </div> </div> <div class="col-md-12"> <div class="form-group"> [textarea your-message class:form-control placeholder"Message"] </div> </div> <div class="col-md-12"> <div class="form-group"> [submit class:btn class:btn-primary class:btn-submit "Send Message"] </div> </div> </div> </div>
<div class="col-md-12 col-md-offset-0"> <div class="row"> <div class="col-md-4 animate-box"> <h3><?php the_field('contact_direction'); ?></h3> <ul class="contact-info"> <li><span><i class="icon-map5"></i></span><?php the_field('contact_address'); ?></li> <li><span><i class="icon-phone4"></i></span><?php the_field('contact_phone'); ?></li> <li><span><i class="icon-envelope2"></i></span><a href="mailto:<?php the_field('contact_email'); ?>"><?php the_field('contact_email'); ?></a></li> <?php if( get_field('contact_website') ): ?> <li><span><i class="icon-globe3"></i></span><a href="<?php the_field('web_site_url'); ?>"><?php the_field('contact_website'); ?></a></li> <?php endif; ?> </ul> </div> <?php echo do_shortcode('[contact-form-7 id="183" title="Contact form 1"]'); ?> </div> </div>
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘CF7 Not submitting’ is closed to new replies.