Hide orders with a status of payment pending on the My Account page in WooCommerce

Hide orders with a status of payment pending on the My Account page in WooCommerce on your child site.

Snippet Type

Execute on Child Sites

Snippet

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;
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.