Navigation Menu

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 travislopes/c8381d84757e88185d1ddea665d1de6a to your computer and use it in GitHub Desktop.
Save travislopes/c8381d84757e88185d1ddea665d1de6a 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