Hello,
Regarding the query details, it looks like the "order product" table is right now the element to optimize.
It might be interesting to add an index on the "product_id" to speed up some queries ; you have a very high number of entries in that table in your side.
The "generic" query to add the index is :
ALTER TABLE `#__hikashop_order_product` ADD INDEX `product_id` (`product_id`);
But you have to replace the "#_" by your database price ; which will be in your case
ALTER TABLE `jml_hikashop_order_product` ADD INDEX `product_id` (`product_id`);
Please let us know if it improve the query and you can give us a new screenshot of the debug so we can compare values.
Regards,