mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/64155814/hide-orders-with-status-pending-payment-on-woocommerce-my-account-page
7 lines
331 B
Text
7 lines
331 B
Text
add_filter( 'woocommerce_my_account_my_orders_query', 'unset_pending_payment_orders_from_my_account', 10, 1 );
|
|
function unset_pending_payment_orders_from_my_account( $args ) {
|
|
$statuses = wc_get_order_statuses();
|
|
unset( $statuses['wc-pending'] );
|
|
$args['post_status'] = array_keys( $statuses );
|
|
return $args;
|
|
}
|