Hi,
You can use the same kind of code than in the order display.
echo JText::_('HIKASHOP_SHIPPING_METHOD') . ' : ';
if(is_string($this->order->order_shipping_method)) {
if(strpos($this->order->order_shipping_id, '-') !== false)
echo $this->shippingClass->getShippingName($this->order->order_shipping_method, $this->order->order_shipping_id);
else
echo $this->shipping->getName($this->order->order_shipping_method, $this->order->order_shipping_id);
} else
echo implode(', ', $this->order->order_shipping_method);
Where "shipping" and "shippingClass" are coming from
$pluginsShipping = hikashop_get('type.plugins');
$pluginsShipping->type='shipping';
$this->assignRef('shipping',$pluginsShipping);
$shippingClass = hikashop_get('class.shipping');
$this->assignRef('shippingClass', $shippingClass);
Regards,