Title: problem with comments sending
Last modified: August 22, 2016

---

# problem with comments sending

 *  [vd1216](https://wordpress.org/support/users/vd1216/)
 * (@vd1216)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/problem-with-comments-sending/)
 * hello!
    i have problem with comments sending. when form is empty wp returns white
   standard page(error-page) but i need checking form on empty fields. how can it
   be fixed?

Viewing 1 replies (of 1 total)

 *  [Gunjan Rai kanungo](https://wordpress.org/support/users/gunjan-rai/)
 * (@gunjan-rai)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/problem-with-comments-sending/#post-5772464)
 * Hi vd1216,
    How you’re doing!!! Actually it’s WordPress default functionality
   and nothing to do with the theme… But you can fix this with below code using 
   any custom JS plugin
 *     ```
       jQuery(document).ready(function($) {
           'use strict';
           jQuery('#commentform').submit(function(event){
           	if ( jQuery.trim(jQuery( "#comment" ).val()) == "" || jQuery.trim(jQuery( "#commentform input:first" ).val()) == "" ) {
       		    alert("Please fill the form ... ");
       		    event.preventDefault();
       		    return;
       		}
   
       	});
       });
       ```
   
 * Have a nice day!!!
    Best, Gunjan kanungo

Viewing 1 replies (of 1 total)

The topic ‘problem with comments sending’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/invert-lite/1.0.17/screenshot.
   png)
 * Invert Lite
 * [Support Threads](https://wordpress.org/support/theme/invert-lite/)
 * [Active Topics](https://wordpress.org/support/theme/invert-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/invert-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/invert-lite/reviews/)

## Tags

 * [Comments](https://wordpress.org/support/topic-tag/comments/)
 * [form](https://wordpress.org/support/topic-tag/form/)

 * 1 reply
 * 2 participants
 * Last reply from: [Gunjan Rai kanungo](https://wordpress.org/support/users/gunjan-rai/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/problem-with-comments-sending/#post-5772464)
 * Status: not resolved