Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Nick Quinlan

    (@nquinlan)

    Thanks for bringing it to our attention. The bug causing this has been fixed in Version 1.0.2 (Revision 636885). Updating the plugin on your site should do the trick.

    Thread Starter mattfredfry

    (@mattfredfry)

    Sweet. Just updated and everything is working great. Thanks!!

    I am getting this same sort of error.. 2013 using Version 1.6.12
    Whenever I add Conditional Logic to my forms they do not show.

    I am figuring it out..
    if a ‘bad’ JS script loads before the ‘script for the form’.
    Then it won’t load. Look at ~ error logs from page ..
    and see if there are JS errors.

    I have found another issue in the latest version I have just installed Gravity Forms 1.7.2.

    If you have conditional logic enabled and you are using the maximum character field in the textarea field – it will through a JS error and the form will be hidden.

    I have been in contact with the Gravity Forms support team and they have made me realize that there was an issue with my theme that was causing this issue.
    http://www.gravityhelp.com/documentation/page/Testing_for_a_Theme/Plugin_Conflict

    Here is the answer!!! I figured this out after analyzing the JS console. Make sure your header.php file does not have any instance of jQuery loading. This will take care of everything.

    Put this code in your template functions.php file.

    // ADD JQUERY
    function jquery_method() {
    	wp_deregister_script( 'jquery' );
    	wp_register_script(   'jquery'
    	    , '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js', false, false);
    
    	wp_enqueue_script('jquery');
    }    
    
    if( !is_admin() ) {
    	add_action('init', 'jquery_method');
    }
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Breaks Gravity Forms That Have Conditional Logic’ is closed to new replies.