Hi,
There is no such function for orders.
Hacking the plugin to have order tags is not impossible, but in that case, it will be simpler for you to modify the code of the order details page to remove the check on the user login.
You can change the code:
function show(){
if($this->_check()){
return parent::show();
}
return true;
}
to:
function show(){
return parent::show();
return true;
}
in the file components/com_hikashop/controllers/order.php for that. You'll then be able to use the URL I gave in my previous post to display the order of the customer.