When I use conditional logica, form not visible
I cannot find the solution, the website is: http://hoevedebeek.nl/test/
When I use conditional logica, form not visible
I cannot find the solution, the website is: http://hoevedebeek.nl/test/
Hi,
Your form is failing to appear because of a javascript error which is preventing the Gravity Forms scripts from running and revealing the form, I suspect although can't be 100% sure without seeing the theme header.php and functions.php files that it is because the theme author is not enqueueing scripts in the correct way which is causing jQuery to be loaded multiple times and scripts to be loaded in the wrong order.
If you could copy the contents of the header.php and functions.php files separately to a service like Pastie or PasteBin and then post the links here I can take a look and recommend workaround although ultimately it is the theme author that needs to fix the theme.
Regards,
Same problem here.... Sufussion theme last version 4.4.6 .
Page Example. http://swingverguenza.com/inscripcion-exchange/
Fucntions and header in pastie
http://pastie.org/8034187
http://pastie.org/8034185
Any workarround ???
@Albertoe while your problem is the same it is not your theme that is incorrectly enqueueing scripts it is the wpng-calendar plugin which according to it's WordPress plugin repository page hasn't been updated in over five years.
I would advise you find a replacement plugin that is still under development, however if you still want to use it you would have to edit the wpng-calendar.php file, on line 165 of the file you should find this
wp_enqueue_script('jquery-js', get_bloginfo('wpurl') . '/wp-content/plugins/wpng-calendar/js/jquery.js', null, '6124');
whereas the developer should have used the following
wp_enqueue_script("jquery");
Again, I would recommend finding a replacement if possible rather than editing plugin files.
Regards,
Richard
I have this problem when I use nicescrollbar:
<script src="/wp-content/themes/yoo_master_wp/js/jquery.min.js"></script>
<script src="/wp-content/themes/yoo_master_wp/js/jquery.nicescroll.min.js"></script>
When I added jquery.min.js it goes wrong with the form.
When I remove the jquery nicescollbar does not work.
how can I both get this working?
@richardvav Thanks for an amazing quick response. Solved. Thanks.
@Albertoe you're welcome, I am glad your issue is resolved.