Find this in admin/send_pos.php. Flip [5] and [6].
Code:
$pdf->addClientShipAdresse($tmpt[0][5]);
$pdf->addClientBillAdresse($tmpt[0][6]);
Then open admin/pdfpack.php. Find this and change the text from Billing to Shipping.
Code:
$length = $this->GetStringWidth("Billing Address");
$this->Cell( $length, 2, "Billing Address");
Then do the opposite with this in admin/pdfpack.php.
Code:
$length = $this->GetStringWidth("Shipping Address");
$this->Cell( $length, 2, "Shipping Address");
Should do the trick! Enjoy!
Bookmarks