Hi
If you want to display the shipping and payment method on the shipping invoice, you can edit the file order / invoice.php via the menu Display>Views and move the code:
<tr>
<td>
<?php
if(!empty($this->shipping)) {
echo JText::_('HIKASHOP_SHIPPING_METHOD').' : ';
if(is_string($this->order->order_shipping_method))
echo $this->shipping->getName($this->order->order_shipping_method, $this->order->order_shipping_id);
else
echo implode(', ', $this->order->order_shipping_method);
echo '<br/>';
}
?>
<?php
if(!empty($this->payment)) {
echo JText::_('HIKASHOP_PAYMENT_METHOD').' : '.$this->payment->getName($this->order->order_payment_method,$this->order->order_payment_id);
}
?>
</td>
</tr>
just before the
line near the end.