
Originally Posted by
ScriptJunkie
Hi Diva,
I have a question about customizing PDF packing slips.
I'm aware that I can change the default logo to my own logo through the SO config in admin...however, it advises to keep images to a specific size for best output. I prefer to use a banner logo, plus that gigantic font "Packing Slip" text just bugs me.
Go into <admin folder>/includes/functions/extra_functions/lcsd_merged_packing_slips.php and find around line 73:
PHP Code:
if(LCSD_SHOW_SHIPPING_LABEL == 'False'){
$this->SetFont('Arial','B', 28);
$this->SetXY(350, 85);
$this->MultiCell(270, 24, 'Packing Slip');
}
You can remove the B for bold (empty will be fine) and adjust 28 to something smaller for the fontsize.
All the other lines regarding the logo and the rest of the text is in that file as well, it is -more or less- hardcoded into this file instead of adjustable in the admin. You could volunteer and make it with adjustable variables for the next version
Bookmarks