I am trying to use the Bootstrap validator to validate the comments in WordPress, as it's a lot nicer than the default WordPress error system. The Jquery validation works nicely, but the form won't submit and post the fields to the wp-comments.php file. Any suggestions?
Functions.php
<?php
function add_theme_scripts() {
wp_enqueue_style( 'style', get_stylesheet_uri() );
wp_enqueue_script( 'script', get_template_directory_uri() . '/js/nucleare.js', array ( 'jquery' ),...
Why is this WordPress comments form not submitting?
Functions.php
Code (Text):
<?php
function add_theme_scripts() {
wp_enqueue_style( 'style', get_stylesheet_uri() );
wp_enqueue_script( 'script', get_template_directory_uri() . '/js/nucleare.js', array ( 'jquery' ),...