Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ForGravity/4ad95d2707de03be4189f4500db8c7fb to your computer and use it in GitHub Desktop.
Save ForGravity/4ad95d2707de03be4189f4500db8c7fb to your computer and use it in GitHub Desktop.
<?php
add_filter( 'fg_entryautomation_search_criteria', 'only_automate_failed_payments', 10, 3 );
function only_automate_failed_payments( $search_criteria, $feed, $form ) {
$search_criteria['field_filters'][] = array( 'key' => 'payment_status', 'value' => 'Failed' );
return $search_criteria;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment