This is a bit complicated, but you can use the file image-store/admin/sales/sales-details.php as a guide.
All the orders are save under the content type “ims_order”, each order has it’s own order id. Usee the meta_key “_ims_order_data” and “_response_data” to obtain all data related to the order.
You can use the function get_post_meta get_post_meta( $post_id, "_ims_order_data", true) get_post_meta ($post_id, "_response_data", true)
Where $post_id is the sales id, these functions will return arrays with all the sales data.
@kilinkis,
we may not integrate this to the standard plugin, but you should add/integrate the code into a plugin so you can upgrade the image store plugin in the future.