Tagged: gravity forms
I’m having issues with Gravity Forms fields on a form, the totals is not updating.
– I have 4 plugins installed (Gravity Forms, Gravity Forms Authorize.net Add-On, Postman SMTP, WordPress HTTPS)
– I have No-Conflict Mode enabled on the Gravity Forms settings
– I disable Page Transitions on the Enfold Settings
– WordPress and Plugins are up to day
I tried another theme enabled and the total field updates fine.
Any help would be appreciated, thank you.
Hey mightyfrank,
Please try adding this to the bottom of your functions.php file under Appearance–>Editor:
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
wp_enqueue_script('jquery');
}
}
add_action('init', 'modify_jquery');
Best regards,
Rikard