-- HikaShop version -- : 3.1.1
-- Joomla version -- : 3.7.3
-- PHP version -- : 7.1.0
-- Browser(s) name and version -- : Firefox 52.0.0
Hello!
There is no such category in the documentation so I ask to help me with a kind of questions about order statuses.
1. What is Capture (look at screenshot)? Where it can be used?
2. Why there is no current order status at "detailed order view" (order / show.php)? Why there is no history of changing order statuses on that page?
3. How can I get on the order / show view output of order_id and order_status? This code doesn't work in the order / show.php:
<?php echo $row->order_id; ?>
<?php echo hikashop_orderStatus($row->order_status); ?>
4. I found that current HikaShop configuration capabilities doesn't allow the following algorithm of changing order statuses:
- There is a payment method, which involves prepayment before shipment.
- Therefore, immediately after the order is created, it is assigned the status Pending.
- At the same time immediately after placing the order, I want the cart to be cleaned.
- However, I can not achieve this, because in the configuration there are only two options for which the cart is cleaned: Created and Confirmed.
Is it possible to add more items from the list of order statuses or to add an option "Any" which means that the cart will be cleaned at any status of the placed order?
5. I have overriden language constants with the order status names. Now, for example, in the payment methods in the dropdown list, I see new names. But in mass actions old (not overriden) names are used therefore, it introduces confusion (this can be seen in three screenshots below). Is it possible to fix this?