Title: [Plugin: Visual Form Builder] Form Verfication Issue
Last modified: August 20, 2016

---

# [Plugin: Visual Form Builder] Form Verfication Issue

 *  Resolved [FixMiller](https://wordpress.org/support/users/fixmiller/)
 * (@fixmiller)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-visual-form-builder-form-verfication-issue/)
 * The verification filed will accept more than 2 digits and show the success message,
   but the email is never delivered.
 * [http://wordpress.org/extend/plugins/visual-form-builder/](http://wordpress.org/extend/plugins/visual-form-builder/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Matthew Muro](https://wordpress.org/support/users/mmuro/)
 * (@mmuro)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-visual-form-builder-form-verfication-issue/#post-2206164)
 * The latest release mistakenly broke the security JS validation. However, there
   is a PHP check for the same thing (two digits), so an email with more than three
   digits will still fail silently.
 * A temporary solution is to open the visual-form-builder-validate.js file and 
   overwrite all lines with the following code:
 *     ```
       jQuery(document).ready(function($) {
       	$( '.visual-form-builder' ).validate({
       		rules: {
       			"vfb-secret":{
       				maxlength:2
       			}
       		},
       		errorPlacement: function(error, element) {
       			if ( element.is( ':radio' ) || element.is( ':checkbox' ) ) {
       				error.appendTo( element.parent().parent() );
       			}
       			else {
       				error.insertAfter( element );
       			}
       		}
       	});
   
       	/* Display jQuery UI date picker */
       	$( '.vfb-date-picker' ).datepicker();
       });
       ```
   
 *  Thread Starter [FixMiller](https://wordpress.org/support/users/fixmiller/)
 * (@fixmiller)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-visual-form-builder-form-verfication-issue/#post-2206231)
 * Thanks Matthew, works perfectly.
 *  [lisa0721](https://wordpress.org/support/users/lisa0721/)
 * (@lisa0721)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-visual-form-builder-form-verfication-issue/#post-2206240)
 * Applied this fix, also. Works great!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[Plugin: Visual Form Builder] Form Verfication Issue’ is closed to new
replies.

 * ![](https://ps.w.org/visual-form-builder/assets/icon-256x256.png?rev=1205840)
 * [Visual Form Builder](https://wordpress.org/plugins/visual-form-builder/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/visual-form-builder/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/visual-form-builder/)
 * [Active Topics](https://wordpress.org/support/plugin/visual-form-builder/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/visual-form-builder/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/visual-form-builder/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [lisa0721](https://wordpress.org/support/users/lisa0721/)
 * Last activity: [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-visual-form-builder-form-verfication-issue/#post-2206240)
 * Status: resolved