Partial Entries and Active Campaign

I used to have GF send partial entries to ActiveCampaign with a specific tag. For whatever reason its no longer sending the Tag, i believe there was an update to AC.

This is what I have.

add_action( 'gform_partialentries_post_entry_saved', 'send_to_activecampaign_on_partial_entry_saved', 10, 2 );
function send_to_activecampaign_on_partial_entry_saved( $partial_entry, $form,) {
    if ( function_exists( 'gf_activecampaign' ) ) {
        $partial_entry['status'] = 'partial';
        gf_activecampaign()->maybe_process_feed( $partial_entry, $form, );
    }
}

Can someone help me with adding a specific Tag to all my partial entries?

Thanks.
Cam.

Cam, the snippet that you’re using is only intended to trigger the ActiveCampaign feed for partial entries, it doesn’t has any control over tags added.

I would recommend you to open a support ticket to investigate the issue further.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.