Site logo

Archived topic

Woocommerce pagination

1 reply · Started by Alberto on April 17, 2020

Viewing posts 1–2 of 2

Hi.

I have a woocommerce category with quite a few products and I would like that instead of looking like this:

1-2-3-4 ... 6-7-8

it can look like this:

1-2-3-4-5-6-7-8

In other words, they should see all the pages, and ideally, a button should also appear that allows you to see ALL the products at the same time.

It's possible?

Thank you in advance.

Hi there,

This might help with the show all button: https://wordpress.stackexchange.com/a/333219

As for the pagination, try this:

add_filter( 'woocommerce_pagination_args', function( $args ) {
    $args['mid_size'] = 0;

    return $args;
} );
This archived topic is closed to new replies.