Hello,
Sorry, I misunderstood your request.
The setting is for filtering the order status the vendor can use when he wants to update an order.
The HikaMarket order listing do have a dropdown which allow to filter the statuses ; but that dropdown only authorize to select one order status at the time.
Now we can think of an improvement for that and allow multiple statuses, but I would prefer to not provide a multi-select field since it's not very user-friendly.
We can imagine "groups" of statuses, like the groups you can see in the HikaShop backend, so one entry in the list would select all "confirmed" statuses (confirmed, shipped, etc).
It requires some analysis and development, but it's an interesting idea.
And right now, if you want to change the default value for the filter, you need to edit one HikaMarket core file (ordermarket/view.html.php) and replace the line
$pageInfo->filter->filter_status = $app->getUserStateFromRequest($this->paramBase.'.filter_status', 'filter_status', '', 'string');
By
$pageInfo->filter->filter_status = $app->getUserStateFromRequest($this->paramBase.'.filter_status', 'filter_status', 'confirmed', 'string');
To show all confirmed orders by default
Regards,