• I’m on the latest of Gravity Forms, Gravity Forms: Multiple Form Instances, and WP core. You can reproduce by creating one simple conditional logic setting on one field, then the whole form disappears with inline css display: none on the div surrounding the <form> element.

    Disable the GF: Multiple Form Instances, or remove the conditional logic, and the form returns. The conditional logic works as expected when GF: Multiple Form Instances is disabled.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Same issue.

    Related issue here, I believe. This plugin disables all conditional logic in the form. Form appears on page though.

    BB

    Fyi, there are no current plans to fix this…

    https://github.com/tyxla/Gravity-Forms-Multiple-Form-Instances/issues/21#issuecomment-293978378

    I may just disable the find/replace id functionality of the plugin on affected pages, since for us there’s just one page and form affected right now – and, the form that this plugin was installed for is not on the same page. A temp workaround for now. I’ll post my code here once I get it working.

    Hey folks,

    In case this helps anyone, for now I’ve just added an if statement to exclude the functionality on the one page where it was an issue. (There’s three in my code below for dev, test and prod).

    Cheers,
    Bill

    public function gform_get_form_filter( $form_string, $form ) { if ( is_page(20582) || is_page(20676) || is_page(34373) ){ // do next execute if page - dev, dev2 and prod // do nothing } else {

    and close the if statement adding another bracket before the return…

    } } return $form_string;

    @sevensoutbill Thanks for sharing your solution! I’m having the same problem and I think your fix will work temporarily for me as well. May I ask if you added that code in your theme functions file or the plugin code?

    Thanks again!

    @sevensoutbill Nevermind. Just had to think it through a little more and it all made sense. I put this in the plugin file and now life is much happier over here. ??

    Thanks one more time!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Forms with conditional logic completely hidden by this plugin’ is closed to new replies.