if Gravity Forms are connected to HubSpot and use Ajax, form still posts
-
If Gravity forms is connected with HubSpot using the add-on Gravity Forms HubSpot Add-On (to post results from the website form into HubSpot) despite the user being shown a warning/error, the form still posts on the backend.
I had to completely disable Ajax for Gravity Forms to attempt to fix this.add_filter('gform_form_args', 'no_ajax_on_all_forms', 10, 1); function no_ajax_on_all_forms($args){ $args['ajax'] = false; return $args; }
Can this be taken care of in the plugin?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘if Gravity Forms are connected to HubSpot and use Ajax, form still posts’ is closed to new replies.