• Anonymous User 14454944

    (@anonymized-14454944)


    hi, i have the gravity forms partial entries add-on installed which can save abandoned entries and was wondering how to get hubspot integration working with just the partial entries being submitted. I have a multipage form setup, first page just asking for basics like email and second page more in-depth. Currently hubspot only gets updated if submit button is clicked but i’d like the first page to be saved incase they abandoned the form before the submit, that way i can still keep emails addresses.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Big Sea

    (@big-sea)

    That’s a very good question,

    I’d be curious how to implement it. Unfortunately that’s not in the cards right now (priority is implementing oAuth 2.0 which HubSpot is switching to soon)…

    My guess would be to look at the hooks for the Partial Entries addon, and during the “save” action for that, trigger my HubSpot submission call as well. Unfortunately that’s dependent on a flexible plugin on GF’s part (which might be the case).

    We’ll have to look into that for the future.

    Thread Starter Anonymous User 14454944

    (@anonymized-14454944)

    Hi there, thanks for getting back to me. I think they may have this already built in. on this page https://www.gravityhelp.com/documentation/article/gform_partialentries_post_event/#placement

    that say this…

    add_action( ‘gform_partialentries_post_entry_saved’, ‘send_to_mailchimp_on_partial_entry_saved’, 10, 2 );
    function send_to_mailchimp_on_partial_entry_saved( $partial_entry, $form ) {
    if ( function_exists( ‘gf_mailchimp’ ) ) {
    gf_mailchimp()->maybe_process_feed( $partial_entry, $form );
    }
    }

    what would be the hubspot function name that i would use instead of mail chimp?

    Appreciate any help.
    Thanks

    Plugin Author Chris Lagasse

    (@soben)

    Hey stoepid… We will very likely have to come up with a special function for this purpose.

    The closest thing is ‘process_feed’ in the GF_Hubspot class, but it requires different fields than partial_entry requires, and it’s also not part of the Feed… so I can’t remotely guarantee that it works.

    I will have to do some testing and see what I can do to implement a fix. However, my priority right now is to get this to work in oAuth2.0

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to get Hubspot updating with partial entries add-on’ is closed to new replies.