Process Feeds on Edit

By default, some feeds (such as asynchronous feeds) may not be processed when editing entries. This snippet will disable async feed processing and then loop through all of the registered add-ons and process their feeds.

Note, delayed feeds will still not be processed.

Code

Filename: gpeb-process-feeds-on-edit.php

<?php
/**
 * Gravity Perks // Entry Blocks // Process Feeds on Edit
 * https://gravitywiz.com/documentation/gravity-forms-entry-blocks/
 *
 * By default, some feeds (such as asynchronous feeds) may not be processed when editing entries. This snippet will
 * disable async feed processing and then loop through all of the registered add-ons and process their feeds.
 *
 * Note, delayed feeds will still not be processed.
 */
add_filter( 'gform_entry_post_save', function( $entry, $form ) {
	if ( ! function_exists( 'gp_entry_blocks' ) ) {
		return $entry;
	}

	if ( ! gp_entry_blocks()->block_edit_form->has_submitted_edited_entry() ) {
		return $entry;
	}

	/**
	 * Disable asynchronous feed process on edit otherwise async feeds will not be re-ran due to a check in
	 * class-gf-feed-processor.php that checks `gform_get_meta( $entry_id, 'processed_feeds' )` and there isn't
	 * a way to bypass it.
	 */
	$filter_priority = rand( 100000, 999999 );
	add_filter( 'gform_is_feed_asynchronous', '__return_false', $filter_priority );

	$addons = \GFAddon::get_registered_addons();

	foreach ( $addons as $addon ) {
		$addon = call_user_func( array( $addon, 'get_instance' ) );
		if ( $addon instanceof \GFFeedAddOn ) {
			$addon->maybe_process_feed( $entry, $form );
		}
	}

	remove_filter( 'gform_is_feed_asynchronous', '__return_false', $filter_priority );

	return $entry;
}, 10, 2 );

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.