Hi,
I see, but then, oculd you answer the question I asked in my previous message ?
... what is the link exactly ?
Also, try changing the code:
if(!$user->guest) {
$url = hikashop_completeLink('order&task=show&cid='.$this->order->order_id);
} else {
$url = hikashop_completeLink('order&task=show&cid='.$this->order->order_id.'&order_token='.$this->order->order_token);
}
to:
global $Itemid;
if(!$user->guest) {
$url = hikashop_completeLink('order&task=show&cid='.$this->order->order_id. '&Itemid='. $Itemid);
} else {
$url = hikashop_completeLink('order&task=show&cid='.$this->order->order_id.'&order_token='.$this->order->order_token. '&Itemid='. $Itemid);
}
in the end.php file. That might avoid the login issue you have with the order link.