WS Evolution Posted June 15, 2004 Share Posted June 15, 2004 I was very surprised to see that the batch order contribution did not include the country under the address. However it was simple to add. Here is the code if anyone else would like to add it to the contribution. Add this code to batch_print.php approx. line 110 $country = $order->delivery['country']; $pdf->addText($indent,$pos -= GENERAL_LEADING,GENERAL_FONT_SIZE,$country); AFTER: $cty_st_zip = $order->delivery['city'] . " " . $order->delivery['state'] . ", " . $order->delivery['postcode']; $pdf->addText($indent,$pos -= GENERAL_LEADING,GENERAL_FONT_SIZE,$cty_st_zip); This contribution is highly recommended for large volume orders!! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.