rachael-portier
8/29/2019 - 9:54 PM

Remove Pagination My Accounts > Orders List

add_filter( 'woocommerce_my_account_my_orders_query', 'remove_orders_list_pagination', 20, 1 );
function remove_orders_list_pagination( $args ) {
    $args['limit'] = -1;

    return $args;
}