Abandoned/live Carts Default Sorting

How can I change the default sorting to sort by Date in Descending order.

I believe on prior versions the file was located public_html/app/controllers/backend/cart.php

but the same file in the current version is so much smaller.

How can I change the default sorting to sort by Date in Descending order.

I believe on prior versions the file was located public_html/app/controllers/backend/cart.php

but the same file in the current version is so much smaller.

app/functions/fn.cart.php

find: $sorting = db_sort($params, $sortings, 'customer', 'asc');

replace with; $sorting = db_sort($params, $sortings, 'date', 'desc');

it is on line 8449 on cs-cart v4.4.2

That worked !

Thanks for the mile marker number :grin: , that help a lot.