Sorry for the inconvenience.
Check this out. http://www.gravityhelp.com/documentation/page/Gform_enqueue_scripts
This is being automated for upcoming v1.3 but currently you need to do something like this in your functions.php
If its sitewide then you can skip the if(is_page()) check.
function custom_gf_scripts()
{
if(is_page(61) || is_page('home'))
{
$form_id = 6;
$is_ajax = true;
gravity_form_enqueue_scripts($form_id, $is_ajax);
}
}
add_action('wp_head',custom_gf_scripts, 5);
Ok great. Yeah I did that but sadly thats a bit beyond clients abilities. So you are going to fix your plugin so that it fully processes the shortcodes for GF. Thanks!
Yes it is already being tested. I found the bug recently when i got my own official copy of Gravity Forms and began to implement it became clear.
I have planned and tested a fix but it requires quite a few changes so its not something i can just push out quite yet.
v1.3 should be out no later than the first week of October.