Set up My Accounts on a page in Woocommerce

Woocommerce 2.6.x has a special page in the user account area (My account), which displays the user's previous orders.

This page is now paginated and displays 15 elements / pages by default.

Here's a screenshot of a Woocommerce Orders store theme with 8 lines: enter image description here

I cannot find a way to change this.

How can I show only 7 elements instead of the default number?

Thank.

+4
source share
1 answer

woocommerce_my_account_my_orders_query, , post_per_page 7, .

:

add_filter( 'woocommerce_my_account_my_orders_query', 'custom_my_account_orders', 10, 1 );
function custom_my_account_orders( $args ) {

    $args['posts_per_page'] = 7;
    return $args;
}

function.php ( ), .

.

. 10 ( 15).

+2

Source: https://habr.com/ru/post/1668157/


All Articles