• Resolved Ward

    (@yward)


    There is a bug in orders page that it only lists 10 orders then pagination starts, however if you click “next” to go to the next page of orders it just refreshes the page.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Brajesh Singh

    (@sbrajesh)

    Thank you for reporting.

    Please allow us 2-4 working days to look into it and resolve.

    Thank you
    Brajesh

    Thread Starter Ward

    (@yward)

    Thank you.

    I’m currently using this to cancel pagination until the issue is resolved:

    
    add_filter( 'woocommerce_my_account_my_orders_query', 'custom_my_account_orders', 10, 1 );
    function custom_my_account_orders( $args ) {
        // Set the post per page
        $args['limit'] = 1000;
    
        return $args;
    }

    Thank you for your prompt response.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Orders Page Bug’ is closed to new replies.