Process Feed when Partial Entry is Saved.

Process Google Sheet feeds when a partial entry is saved.

Code

Filename: gpgs-process-feed-on-partial-entry-save.php

<?php
/**
 * Gravity Perks // GP Google Sheets // Process Feed when Partial Entry is Saved.
 *
 * Process Google Sheet feeds when a partial entry is saved.
 */
add_action( 'gform_partialentries_post_entry_saved', 'send_to_google_sheet_on_partial_entry_saved', 10, 2 );
function send_to_google_sheet_on_partial_entry_saved( $partial_entry, $form ) {
	if ( function_exists( 'gp_google_sheets' ) ) {
		$partial_entry['status'] = 'partial';
		gp_google_sheets()->maybe_process_feed( $partial_entry, $form );
		gf_feed_processor()->save()->dispatch();
	}
}

Leave a Reply

Your email address will not be published. Required fields are marked *

  • Trouble installing this snippet? See our troubleshooting tips.
  • Need to include code? Create a gist and link to it in your comment.
  • Reporting a bug? Provide a URL where this issue can be recreated.

By commenting, I understand that I may receive emails related to Gravity Wiz and can unsubscribe at any time.