RestroPress

⌘K
  1. Home
  2. Docs
  3. RestroPress
  4. Developer Docs
  5. Filters
  6. rpress_should_process_pending

rpress_should_process_pending

The rpress_should_process_pending filter is used to Allow extensions to filter for their own payment types Process when a payment moves to pending, for Example, Recurring Payments.

 

function process_payment_pending( $process_pending,$payment_id ) {
$process_pending = //get pending payment gateway id.
}
add_filter( 'rpress_should_process_pending', 'process_payment_pending', 10, 2 );

How can we help?