diff --git a/public_html/wp-content/plugins/wordcamp-payments-network/includes/payment-requests-dashboard.php b/public_html/wp-content/plugins/wordcamp-payments-network/includes/payment-requests-dashboard.php index f51c2aeea..fcc149ccd 100644 --- a/public_html/wp-content/plugins/wordcamp-payments-network/includes/payment-requests-dashboard.php +++ b/public_html/wp-content/plugins/wordcamp-payments-network/includes/payment-requests-dashboard.php @@ -333,7 +333,6 @@ public static function get_current_tab() { $tabs = array( 'drafts', 'overdue', - 'pending-approval', 'approved', 'pending-payment', diff --git a/public_html/wp-content/plugins/wordcamp-payments-network/includes/payment-requests-list-table.php b/public_html/wp-content/plugins/wordcamp-payments-network/includes/payment-requests-list-table.php index 561bbdfb2..b56fca832 100644 --- a/public_html/wp-content/plugins/wordcamp-payments-network/includes/payment-requests-list-table.php +++ b/public_html/wp-content/plugins/wordcamp-payments-network/includes/payment-requests-list-table.php @@ -71,6 +71,8 @@ public function prepare_items() { $where .= " AND `status` IN ( 'wcb-failed', 'wcb-cancelled' ) "; } elseif ( 'drafts' == $view ) { $where .= " AND `status` = 'draft' "; + } elseif ( 'needs-followup' == $view ) { + $where .= " AND `status` = 'wcb-needs-followup' "; } if ( ! empty( $_REQUEST['s'] ) ) {