Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #636020

    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.

    #636539

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.