My form is not displaying on my site http://pirineospicnicfestival.es/ppf/?page_id=1182
I read from gravity form forum:
This is because you have conditional logic being used on your form. 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:
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.
This is most likely why your form is not displaying properly.
Would fest not have the WordPress built in enqueue function ??