A
A
Alexey Karpan2018-11-07 02:52:03
WordPress
Alexey Karpan, 2018-11-07 02:52:03

How to sort items in Woocommerce cart?

Please tell me how to make the items added to the cart displayed sorted by category and name. There is no sorting by default and the order is set as you add. And also sorted goods came in the order form by mail?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alex Vasilyev, 2018-11-08
@av-nexter

You can try to hang sorting on the hook "woocommerce_cart_contents_changed"

add_filter( 'woocommerce_cart_contents_changed', function ( $cart_items ) {
    // тут сортируем массив 

   return $cart_items;
} );

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question