Hi,
Gravity forms says it is a theme related issue:
https://www.gravityhelp.com/question/why-is-there-a-style-attribute-of-displaynone-being-added-my-form-isnt-showing-up/
“Anytime conditional logic is present the entire form is set to display: none; and then javascript is used to only show the fields that should be shown”
“HOWEVER this requires Gravity Forms being able to output the necessary Javascript using the WordPress built in enqueue function… which outputs the Javascript in your footer.
Your theme probably does not have this function call in your theme’s footer.php file:
view sourceprint?
1
<? php wp_footer(); ?>
”
“This function call, which all themes should have (but many people forget to include), enables plugins to output code in the footer of a theme dynamically. If it isn’t present, the theme can’t output the necessary code.”
Any ideas how to overcome this?